diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-04-02 08:24:10 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-02 18:01:43 -0400 |
commit | bd44e2cb4a21d9297b84efbb2e26961f6ece0423 (patch) | |
tree | b675e3cef384120edc110e3db500f0aaddd2f981 /drivers/regulator/ab8500-ext.c | |
parent | 8a3b1b8703fed16c6b796e87c34e2bc0311fe305 (diff) |
regulator: ab8500: Also check for AB8505 based platforms
Ensure we initialise AB8505 external supply regulators.
Signed-off-by: Alexandre Torgue <alexandre.torgue@stericsson.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Reviewed-by: Philippe LANGLAIS <philippe.langlais@stericsson.com>
Tested-by: Xiao Mei ZHANG <xiaomei.zhang@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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ab8500-ext.c b/drivers/regulator/ab8500-ext.c index 1e92e0103380..c24372e96922 100644 --- a/drivers/regulator/ab8500-ext.c +++ b/drivers/regulator/ab8500-ext.c | |||
@@ -393,7 +393,7 @@ int ab8500_ext_regulator_init(struct platform_device *pdev) | |||
393 | config.init_data = &pdata->ext_regulator[i]; | 393 | config.init_data = &pdata->ext_regulator[i]; |
394 | config.driver_data = info; | 394 | config.driver_data = info; |
395 | 395 | ||
396 | if (is_ab9540(ab8500) && | 396 | if ((is_ab9540(ab8500) || is_ab8540(ab8500)) && |
397 | ((info->desc.id == AB8500_EXT_SUPPLY1) || | 397 | ((info->desc.id == AB8500_EXT_SUPPLY1) || |
398 | (info->desc.id == AB8500_EXT_SUPPLY2) || | 398 | (info->desc.id == AB8500_EXT_SUPPLY2) || |
399 | (info->desc.id == AB8500_EXT_SUPPLY3))) | 399 | (info->desc.id == AB8500_EXT_SUPPLY3))) |