power: supply: max17042: remove duplicated STATUS bit defines
authorKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Mon, 16 Aug 2021 08:27:15 +0000 (10:27 +0200)
committerSebastian Reichel <sre@kernel.org>
Mon, 16 Aug 2021 11:05:32 +0000 (13:05 +0200)
All bits of STATUS register are already defined (see STATUS_SMN_BIT and
further) so there is no need to define status SoC threshold min/max
values one more time.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/max17042_battery.c

index 62eb5ae..c6078f1 100644 (file)
@@ -36,8 +36,6 @@
 
 /* Interrupt mask bits */
 #define CONFIG_ALRT_BIT_ENBL   (1 << 2)
-#define STATUS_INTR_SOCMIN_BIT (1 << 10)
-#define STATUS_INTR_SOCMAX_BIT (1 << 14)
 
 #define VFSOC0_LOCK            0x0000
 #define VFSOC0_UNLOCK          0x0080
@@ -875,8 +873,7 @@ static irqreturn_t max17042_thread_handler(int id, void *dev)
        if (ret)
                return IRQ_HANDLED;
 
-       if ((val & STATUS_INTR_SOCMIN_BIT) ||
-               (val & STATUS_INTR_SOCMAX_BIT)) {
+       if ((val & STATUS_SMN_BIT) || (val & STATUS_SMX_BIT)) {
                dev_info(&chip->client->dev, "SOC threshold INTR\n");
                max17042_set_soc_threshold(chip, 1);
        }