]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
rtc: rv3032: drop WADA
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 6 Mar 2025 21:42:42 +0000 (22:42 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Mon, 17 Mar 2025 10:52:11 +0000 (11:52 +0100)
WADA doesn't actually exist in CTRL1 of the RV-3032, drop it.

Link: https://lore.kernel.org/r/20250306214243.1167692-2-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-rv3032.c

index cb01038a2e27fe397f317cfb73f2b4079cc1c2f3..2c6a8918acba50e57ed923db0834c7c4620ef2cd 100644 (file)
@@ -70,7 +70,6 @@
 #define RV3032_CLKOUT2_OS              BIT(7)
 
 #define RV3032_CTRL1_EERD              BIT(2)
-#define RV3032_CTRL1_WADA              BIT(5)
 
 #define RV3032_CTRL2_STOP              BIT(0)
 #define RV3032_CTRL2_EIE               BIT(2)
@@ -947,11 +946,6 @@ static int rv3032_probe(struct i2c_client *client)
        if (!client->irq)
                clear_bit(RTC_FEATURE_ALARM, rv3032->rtc->features);
 
-       ret = regmap_update_bits(rv3032->regmap, RV3032_CTRL1,
-                                RV3032_CTRL1_WADA, RV3032_CTRL1_WADA);
-       if (ret)
-               return ret;
-
        rv3032_trickle_charger_setup(&client->dev, rv3032);
 
        set_bit(RTC_FEATURE_BACKUP_SWITCH_MODE, rv3032->rtc->features);