projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fbd8d1
)
regulator: fix incorrect indentation of two assignment statements
author
Colin Ian King
<colin.king@canonical.com>
Thu, 7 Dec 2017 13:30:09 +0000
(13:30 +0000)
committer
Mark Brown
<broonie@kernel.org>
Thu, 7 Dec 2017 14:04:43 +0000
(14:04 +0000)
Remove extraneous space to fix indentation on a couple of assignment
statements.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/core.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/core.c
b/drivers/regulator/core.c
index b64b7916507f28adb03b600387356ad9c8fcd26e..365b32e3f50597d230bb2a84fdf61f1db55094d1 100644
(file)
--- a/
drivers/regulator/core.c
+++ b/
drivers/regulator/core.c
@@
-2605,8
+2605,8
@@
int regulator_get_hardware_vsel_register(struct regulator *regulator,
if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
return -EOPNOTSUPP;
-
*vsel_reg = rdev->desc->vsel_reg;
-
*vsel_mask = rdev->desc->vsel_mask;
+ *vsel_reg = rdev->desc->vsel_reg;
+ *vsel_mask = rdev->desc->vsel_mask;
return 0;
}