Cc: Laxman Dewangan <ldewangan@xxxxxxxxxx>
Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
---
include/linux/mfd/core.h | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h
index 99c0395..c6018f4 100644
--- a/include/linux/mfd/core.h
+++ b/include/linux/mfd/core.h
@@ -16,6 +16,35 @@
#include <linux/platform_device.h>
+#define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \Here _pdata should not be used. Instead it should be NULL.
+ MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, NULL) \
+
+#define MFD_CELL_RES(_name, _res) \
+ MFD_CELL_ALL(_name, _res, _pdata, 0, 0, NULL, NULL) \
+