]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
power: supply: twl4030_charger: correct comparision with old current
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Fri, 5 Jul 2024 11:31:13 +0000 (13:31 +0200)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Tue, 27 Aug 2024 09:47:48 +0000 (11:47 +0200)
Driver reads existing current value from two 8-bit registers, but then
compares only one of them with the new 16-bit value.  clang W=1 is also
not happy:

  twl4030_charger.c:243:16: error: variable 'cur_reg' set but not used [-Werror,-Wunused-but-set-variable]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20240705113113.42851-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/twl4030_charger.c

index 7b9b0b3e164e054755bef10b57b6d046ccd4841c..f3f1a0862e935c17a5dbea9599afa1bb51250979 100644 (file)
@@ -363,7 +363,7 @@ static int twl4030_charger_update_current(struct twl4030_bci *bci)
        if (status < 0)
                return status;
        cur_reg |= oldreg << 8;
-       if (reg != oldreg) {
+       if (reg != cur_reg) {
                /* disable write protection for one write access for
                 * BCIIREF */
                status = twl_i2c_write_u8(TWL_MODULE_MAIN_CHARGE, 0xE7,