aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/lp8788-buck.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/lp8788-buck.c')
-rw-r--r--drivers/regulator/lp8788-buck.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/regulator/lp8788-buck.c b/drivers/regulator/lp8788-buck.c
index 11619493a5cb..ef845c7ac69f 100644
--- a/drivers/regulator/lp8788-buck.c
+++ b/drivers/regulator/lp8788-buck.c
@@ -474,7 +474,7 @@ static int lp8788_init_dvs(struct platform_device *pdev,
474 u8 default_dvs_mode[] = { LP8788_BUCK1_DVS_I2C, LP8788_BUCK2_DVS_I2C }; 474 u8 default_dvs_mode[] = { LP8788_BUCK1_DVS_I2C, LP8788_BUCK2_DVS_I2C };
475 475
476 /* no dvs for buck3, 4 */ 476 /* no dvs for buck3, 4 */
477 if (id == BUCK3 || id == BUCK4) 477 if (id > BUCK2)
478 return 0; 478 return 0;
479 479
480 /* no dvs platform data, then dvs will be selected by I2C registers */ 480 /* no dvs platform data, then dvs will be selected by I2C registers */
@@ -505,6 +505,9 @@ static int lp8788_buck_probe(struct platform_device *pdev)
505 struct regulator_dev *rdev; 505 struct regulator_dev *rdev;
506 int ret; 506 int ret;
507 507
508 if (id >= LP8788_NUM_BUCKS)
509 return -EINVAL;
510
508 buck = devm_kzalloc(&pdev->dev, sizeof(struct lp8788_buck), GFP_KERNEL); 511 buck = devm_kzalloc(&pdev->dev, sizeof(struct lp8788_buck), GFP_KERNEL);
509 if (!buck) 512 if (!buck)
510 return -ENOMEM; 513 return -ENOMEM;