Re: [PATCH] mfd: Provide MACRO to declare commonly defined MFD cell attributes

From: Laxman Dewangan
Date: Wed Feb 10 2016 - 07:50:35 EST



On Tuesday 09 February 2016 07:57 PM, Lee Jones wrote:
Cc: Laxman Dewangan <ldewangan@xxxxxxxxxx>
Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
---
include/linux/mfd/core.h | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)

diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h
index 27dac3f..dacdc49 100644
--- a/include/linux/mfd/core.h
+++ b/include/linux/mfd/core.h
@@ -16,6 +16,38 @@
#include <linux/platform_device.h>
+#define MFD_CELL_ALL(_name, _res, _pdata, _id, _compat, _match) \
+ { \
+ .name = (_name), \
+ .num_resources = ARRAY_SIZE((_res)), \
+ .resources = (_res), \
+ .platform_data = (_pdata), \
+ .pdata_size = ARRAY_SIZE((_pdata)), \
+ .of_compatible = (_compat), \
+ .acpi_match = (_match), \
+ .id = _id, \
+ }


Should we add the _res_size and _pdata_size also in argument and use them instead of ARRA_SIZE and lets client set the size with help of ARRAY_SIZE based on type of data?