diff options
author | ChiYuan Huang <cy_huang@richtek.com> | 2021-07-30 15:32:06 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-07-30 18:04:42 +0300 |
commit | 15b4d2b972014b789f22d9267bcff1cc48153738 (patch) | |
tree | 869ae7aea5c584d56077e675ee143925df0eea16 /drivers/regulator/rtq2134-regulator.c | |
parent | 5e36129f2b4e9629513670fc1df97545ab4bd5a1 (diff) | |
download | linux-15b4d2b972014b789f22d9267bcff1cc48153738.tar.xz |
regulator: rtq2134: Fix coding style
Add empty space and put constant number to the right side for 'if' judgement.
Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
Link: https://lore.kernel.org/r/1627648326-5026-1-git-send-email-u0084500@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/rtq2134-regulator.c')
-rw-r--r-- | drivers/regulator/rtq2134-regulator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/rtq2134-regulator.c b/drivers/regulator/rtq2134-regulator.c index e09419cc2793..f21e3f8b21f2 100644 --- a/drivers/regulator/rtq2134-regulator.c +++ b/drivers/regulator/rtq2134-regulator.c @@ -311,7 +311,7 @@ static const struct rtq2134_regulator_desc rtq2134_regulator_descs[] = { static bool rtq2134_is_accissible_reg(struct device *dev, unsigned int reg) { - if (RTQ2134_REG_IO_CHIPNAME <= reg && reg <= RTQ2134_REG_BUCK3_SLEWCTRL) + if (reg >= RTQ2134_REG_IO_CHIPNAME && reg <= RTQ2134_REG_BUCK3_SLEWCTRL) return true; return false; } @@ -329,7 +329,7 @@ static int rtq2134_probe(struct i2c_client *i2c) { struct regmap *regmap; struct regulator_dev *rdev; - struct regulator_config regulator_cfg= {}; + struct regulator_config regulator_cfg = {}; int i; regmap = devm_regmap_init_i2c(i2c, &rtq2134_regmap_config); |