diff options
author | Kim, Milo <Milo.Kim@ti.com> | 2013-01-03 01:32:03 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-03 06:28:53 -0500 |
commit | 1ef01e74e78ce445af168a18c6a196642e25e23b (patch) | |
tree | a6f64e533953a27e6fc042a8ab3c19cae2f36aa7 /drivers/regulator | |
parent | 38d8f67cb6f6d40dd9473a972ec65b3d54a785dd (diff) |
lp8788-buck: fix a for-loop coding style
Remove space before semicolon in for-loop.
Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/lp8788-buck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/lp8788-buck.c b/drivers/regulator/lp8788-buck.c index 98770e8b2e54..11619493a5cb 100644 --- a/drivers/regulator/lp8788-buck.c +++ b/drivers/regulator/lp8788-buck.c | |||
@@ -449,7 +449,7 @@ static int lp8788_dvs_gpio_request(struct platform_device *pdev, | |||
449 | buck->dvs = pdata->buck1_dvs; | 449 | buck->dvs = pdata->buck1_dvs; |
450 | break; | 450 | break; |
451 | case BUCK2: | 451 | case BUCK2: |
452 | for (i = 0 ; i < LP8788_NUM_BUCK2_DVS ; i++) { | 452 | for (i = 0; i < LP8788_NUM_BUCK2_DVS; i++) { |
453 | gpio = pdata->buck2_dvs->gpio[i]; | 453 | gpio = pdata->buck2_dvs->gpio[i]; |
454 | ret = devm_gpio_request_one(&pdev->dev, gpio, | 454 | ret = devm_gpio_request_one(&pdev->dev, gpio, |
455 | DVS_LOW, b2_name[i]); | 455 | DVS_LOW, b2_name[i]); |