diff options
author | Lee Jones <lee.jones@linaro.org> | 2020-12-17 11:34:20 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-02-08 16:54:12 +0300 |
commit | db783e769a950b3f9502dfbc0f7fdbea499a1da6 (patch) | |
tree | aab9f408704cfb7e0d8a69a7dbbe3a7a12a7406d /drivers/mfd/db8500-prcmu.c | |
parent | ab099cc6e5d488d60c72f41a696f5c8ec159f9f1 (diff) | |
download | linux-db783e769a950b3f9502dfbc0f7fdbea499a1da6.tar.xz |
mfd: Standardise MFD_CELL_* helper names
Start all helpers with "MFD_CELL_".
Cc: Gene Chen <gene_chen@richtek.com>
Cc: linux-mediatek@lists.infradead.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/db8500-prcmu.c')
-rw-r--r-- | drivers/mfd/db8500-prcmu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c index a5983d515db0..167faac9b75b 100644 --- a/drivers/mfd/db8500-prcmu.c +++ b/drivers/mfd/db8500-prcmu.c @@ -2954,12 +2954,12 @@ static const struct mfd_cell common_prcmu_devs[] = { }; static const struct mfd_cell db8500_prcmu_devs[] = { - OF_MFD_CELL("db8500-prcmu-regulators", NULL, + MFD_CELL_OF("db8500-prcmu-regulators", NULL, &db8500_regulators, sizeof(db8500_regulators), 0, "stericsson,db8500-prcmu-regulator"), - OF_MFD_CELL("cpuidle-dbx500", + MFD_CELL_OF("cpuidle-dbx500", NULL, NULL, 0, 0, "stericsson,cpuidle-dbx500"), - OF_MFD_CELL("db8500-thermal", + MFD_CELL_OF("db8500-thermal", NULL, NULL, 0, 0, "stericsson,db8500-thermal"), }; |