Commit d097965b authored by Lee Jones's avatar Lee Jones

mfd: core: Fix formatting of MFD helpers

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: default avatarLee Jones <lee.jones@linaro.org>
parent 466a62d7
...@@ -26,20 +26,20 @@ ...@@ -26,20 +26,20 @@
.id = (_id), \ .id = (_id), \
} }
#define OF_MFD_CELL(_name, _res, _pdata, _pdsize,_id, _compat) \ #define OF_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _compat) \
MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL) \ MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, NULL)
#define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match) \ #define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match) \
MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match) \ MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, _match)
#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \ #define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \
MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL) \ MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL)
#define MFD_CELL_RES(_name, _res) \ #define MFD_CELL_RES(_name, _res) \
MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL) \ MFD_CELL_ALL(_name, _res, NULL, 0, 0, NULL, NULL)
#define MFD_CELL_NAME(_name) \ #define MFD_CELL_NAME(_name) \
MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL) \ MFD_CELL_ALL(_name, NULL, NULL, 0, 0, NULL, NULL)
struct irq_domain; struct irq_domain;
struct property_entry; struct property_entry;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment