diff options
author | Lee Jones <lee.jones@linaro.org> | 2015-10-28 16:51:11 +0000 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-01-14 08:44:03 +0000 |
commit | 5b7b2ac1529429c22aacc7cbd6704d6c267e8a9c (patch) | |
tree | 9e322cc05e5ccb15a5278f8679d51a6ccbf1a30d /drivers | |
parent | 8b2775787f2ef0959518206b9df0e6a83ef11496 (diff) | |
download | linux-5b7b2ac1529429c22aacc7cbd6704d6c267e8a9c.tar.bz2 |
mfd: da9052-i2c: Fix tabbing/whitespace issue
WARNING: suspect code indent for conditional statements (8, 24)
+ if (!i2c_safe_reg(reg))
+ return regmap_read(da9052->regmap,
total: 0 errors, 1 warnings, 226 lines checked
Cc: Support Opensource <support.opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mfd/da9052-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/da9052-i2c.c b/drivers/mfd/da9052-i2c.c index 2697ffb08009..578e881067a5 100644 --- a/drivers/mfd/da9052-i2c.c +++ b/drivers/mfd/da9052-i2c.c @@ -70,7 +70,7 @@ static int da9052_i2c_fix(struct da9052 *da9052, unsigned char reg) case DA9053_BA: case DA9053_BB: /* A dummy read to a safe register address. */ - if (!i2c_safe_reg(reg)) + if (!i2c_safe_reg(reg)) return regmap_read(da9052->regmap, DA9052_PARK_REGISTER, &val); |