kernel: add pending patches for new LED_FUNCTION_* definitions
[openwrt/openwrt.git] / target / linux / generic / pending-6.1 / 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.patch
index 7e9d0e66c051e08d80273ebf1a1ef8dc37e9c6ec..a9a5cdf8ba2421c90d9d1a150c7c9b4ffdb1c444 100644 (file)
@@ -17,7 +17,7 @@ Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
 
 --- a/drivers/rtc/rtc-rs5c372.c
 +++ b/drivers/rtc/rtc-rs5c372.c
-@@ -654,6 +654,7 @@ static int rs5c372_probe(struct i2c_clie
+@@ -833,6 +833,7 @@ static int rs5c372_probe(struct i2c_clie
        int err = 0;
        int smbus_mode = 0;
        struct rs5c372 *rs5c372;
@@ -25,7 +25,7 @@ Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
  
        dev_dbg(&client->dev, "%s\n", __func__);
  
-@@ -689,6 +690,12 @@ static int rs5c372_probe(struct i2c_clie
+@@ -868,6 +869,12 @@ static int rs5c372_probe(struct i2c_clie
        else
                rs5c372->type = id->driver_data;
  
@@ -38,7 +38,7 @@ Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
        /* we read registers 0x0f then 0x00-0x0f; skip the first one */
        rs5c372->regs = &rs5c372->buf[1];
        rs5c372->smbus = smbus_mode;
-@@ -722,6 +729,8 @@ static int rs5c372_probe(struct i2c_clie
+@@ -901,6 +908,8 @@ static int rs5c372_probe(struct i2c_clie
                goto exit;
        }
  
@@ -47,7 +47,7 @@ Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
        /* if the oscillator lost power and no other software (like
         * the bootloader) set it up, do it here.
         *
-@@ -748,6 +757,10 @@ static int rs5c372_probe(struct i2c_clie
+@@ -927,6 +936,10 @@ static int rs5c372_probe(struct i2c_clie
                        );
  
        /* REVISIT use client->irq to register alarm irq ... */
@@ -58,12 +58,13 @@ Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
        rs5c372->rtc = devm_rtc_device_register(&client->dev,
                                        rs5c372_driver.driver.name,
                                        &rs5c372_rtc_ops, THIS_MODULE);
-@@ -761,6 +774,9 @@ static int rs5c372_probe(struct i2c_clie
+@@ -940,6 +953,10 @@ static int rs5c372_probe(struct i2c_clie
        if (err)
                goto exit;
  
 +      /* the rs5c372 alarm only supports a minute accuracy */
-+      rs5c372->rtc->uie_unsupported = 1;
++      set_bit(RTC_FEATURE_ALARM_RES_MINUTE, rs5c372->rtc->features);
++      clear_bit(RTC_FEATURE_UPDATE_INTERRUPT, rs5c372->rtc->features);
 +
        return 0;