summaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorChiYuan Huang <cy_huang@richtek.com>2021-07-30 20:32:06 +0800
committerMark Brown <broonie@kernel.org>2021-07-30 16:04:42 +0100
commit15b4d2b972014b789f22d9267bcff1cc48153738 (patch)
tree869ae7aea5c584d56077e675ee143925df0eea16 /drivers/regulator
parent5e36129f2b4e9629513670fc1df97545ab4bd5a1 (diff)
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')
-rw-r--r--drivers/regulator/rtq2134-regulator.c4
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);