rtc: pcf2127: remove pcf2127_rtc_alrm_ops
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 10 Jan 2021 23:17:42 +0000 (00:17 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Sat, 16 Jan 2021 22:19:26 +0000 (23:19 +0100)
Move the alarm callbacks in pcf2127_rtc_ops and use RTC_FEATURE_ALARM to
signal to the core whether alarms are available instead of having a
supplementary struct rtc_class_ops without alarm callbacks.

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

index 39a7b51..68160d8 100644 (file)
@@ -225,12 +225,6 @@ static int pcf2127_rtc_ioctl(struct device *dev,
        }
 }
 
-static const struct rtc_class_ops pcf2127_rtc_ops = {
-       .ioctl          = pcf2127_rtc_ioctl,
-       .read_time      = pcf2127_rtc_read_time,
-       .set_time       = pcf2127_rtc_set_time,
-};
-
 static int pcf2127_nvmem_read(void *priv, unsigned int offset,
                              void *val, size_t bytes)
 {
@@ -459,7 +453,7 @@ static irqreturn_t pcf2127_rtc_irq(int irq, void *dev)
        return IRQ_HANDLED;
 }
 
-static const struct rtc_class_ops pcf2127_rtc_alrm_ops = {
+static const struct rtc_class_ops pcf2127_rtc_ops = {
        .ioctl            = pcf2127_rtc_ioctl,
        .read_time        = pcf2127_rtc_read_time,
        .set_time         = pcf2127_rtc_set_time,
@@ -584,6 +578,7 @@ static int pcf2127_probe(struct device *dev, struct regmap *regmap,
        pcf2127->rtc->range_max = RTC_TIMESTAMP_END_2099;
        pcf2127->rtc->set_start_time = true; /* Sets actual start to 1970 */
        pcf2127->rtc->uie_unsupported = 1;
+       clear_bit(RTC_FEATURE_ALARM, pcf2127->rtc->features);
 
        if (alarm_irq > 0) {
                ret = devm_request_threaded_irq(dev, alarm_irq, NULL,
@@ -598,7 +593,7 @@ static int pcf2127_probe(struct device *dev, struct regmap *regmap,
 
        if (alarm_irq > 0 || device_property_read_bool(dev, "wakeup-source")) {
                device_init_wakeup(dev, true);
-               pcf2127->rtc->ops = &pcf2127_rtc_alrm_ops;
+               set_bit(RTC_FEATURE_ALARM, pcf2127->rtc->features);
        }
 
        if (has_nvmem) {