aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/ab8500-ext.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2013-04-02 13:24:06 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-04-02 23:01:41 +0100
commit0fe17e20a6af5cbe4d0a7739300f7b818c79620f (patch)
treec4b80f07eaa76441887c68d1b7f9f249fd0e6ff3 /drivers/regulator/ab8500-ext.c
parentregulator: ab8500-ext: Remove unused REGULATOR_AB8500_EXT guard (diff)
downloadlinux-dev-0fe17e20a6af5cbe4d0a7739300f7b818c79620f.tar.xz
linux-dev-0fe17e20a6af5cbe4d0a7739300f7b818c79620f.zip
regulator: ab8500-ext: Add support for AB9540 regulators
Add the support for ab9540 external regulators. Signed-off-by: Michel JAOUEN <michel.jaouen@stericsson.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Reviewed-by: Jonas ABERG <jonas.aberg@stericsson.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/ab8500-ext.c')
-rw-r--r--drivers/regulator/ab8500-ext.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/regulator/ab8500-ext.c b/drivers/regulator/ab8500-ext.c
index debae34b9dd4..1e92e0103380 100644
--- a/drivers/regulator/ab8500-ext.c
+++ b/drivers/regulator/ab8500-ext.c
@@ -393,6 +393,12 @@ int ab8500_ext_regulator_init(struct platform_device *pdev)
config.init_data = &pdata->ext_regulator[i];
config.driver_data = info;
+ if (is_ab9540(ab8500) &&
+ ((info->desc.id == AB8500_EXT_SUPPLY1) ||
+ (info->desc.id == AB8500_EXT_SUPPLY2) ||
+ (info->desc.id == AB8500_EXT_SUPPLY3)))
+ info->desc.ops = &ab8500_ext_regulator_ops;
+
/* register regulator with framework */
info->rdev = regulator_register(&info->desc, &config);