diff mbox series

[v2,2/3] mfd: core: Fix formatting of MFD helpers

Message ID 20200611191002.2256570-2-lee.jones@linaro.org
State Accepted
Commit d097965bb6682afe1f8481923b16c033f708923b
Headers show
Series [v2,1/3] mfd: core: Make a best effort attempt to match devices with the correct of_nodes | expand

Commit Message

Lee Jones June 11, 2020, 7:10 p.m. UTC
Remove unnecessary '\'s and leading tabs.

This will help to clean-up future diffs when subsequent changes are
made.

Hint: The aforementioned changes follow this patch.

Signed-off-by: Lee Jones <lee.jones@linaro.org>

---
 include/linux/mfd/core.h | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

-- 
2.25.1

Comments

Frank Rowand June 12, 2020, 12:27 p.m. UTC | #1
+Frank (me)

On 2020-06-11 14:10, Lee Jones wrote:
> Remove unnecessary '\'s and leading tabs.

> 

> This will help to clean-up future diffs when subsequent changes are

> made.

> 

> Hint: The aforementioned changes follow this patch.

> 

> Signed-off-by: Lee Jones <lee.jones@linaro.org>

> ---

>  include/linux/mfd/core.h | 20 ++++++++++----------

>  1 file changed, 10 insertions(+), 10 deletions(-)

> 

> diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h

> index a148b907bb7f1..ae1c6f90388ba 100644

> --- a/include/linux/mfd/core.h

> +++ b/include/linux/mfd/core.h

> @@ -26,20 +26,20 @@

>  		.id = (_id),						\

>  	}

>  

> -#define OF_MFD_CELL(_name, _res, _pdata, _pdsize,_id, _compat)		\

> -	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL)	\

> +#define OF_MFD_CELL(_name, _res, _pdata, _pdsize,_id, _compat) \

> +	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL)

>  

> -#define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match)	\

> -	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match)	\

> +#define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match) \

> +	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match)

>  

> -#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id)		\

> -	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL)	\

> +#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \

> +	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL)

>  

> -#define MFD_CELL_RES(_name, _res)					\

> -	MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL)		\

> +#define MFD_CELL_RES(_name, _res) \

> +	MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL)

>  

> -#define MFD_CELL_NAME(_name)						\

> -	MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL)		\

> +#define MFD_CELL_NAME(_name) \

> +	MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL)

>  

>  struct irq_domain;

>  struct property_entry;

>
diff mbox series

Patch

diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h
index a148b907bb7f1..ae1c6f90388ba 100644
--- a/include/linux/mfd/core.h
+++ b/include/linux/mfd/core.h
@@ -26,20 +26,20 @@ 
 		.id = (_id),						\
 	}
 
-#define OF_MFD_CELL(_name, _res, _pdata, _pdsize,_id, _compat)		\
-	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL)	\
+#define OF_MFD_CELL(_name, _res, _pdata, _pdsize,_id, _compat) \
+	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL)
 
-#define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match)	\
-	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match)	\
+#define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match) \
+	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match)
 
-#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id)		\
-	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL)	\
+#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \
+	MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL)
 
-#define MFD_CELL_RES(_name, _res)					\
-	MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL)		\
+#define MFD_CELL_RES(_name, _res) \
+	MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL)
 
-#define MFD_CELL_NAME(_name)						\
-	MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL)		\
+#define MFD_CELL_NAME(_name) \
+	MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL)
 
 struct irq_domain;
 struct property_entry;