Rename the driver-data struct device pointer by dropping the "rtc"
prefix which is both redundant and misleading (as this is a pointer to
the platform device and not the rtc class device).
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Reviewed-by: David Collins <quic_collinsd@quicinc.com>
Link: https://lore.kernel.org/r/20230202155448.6715-10-johan+linaro@kernel.org
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
  * @allow_set_time:    indicates whether writing to the RTC is allowed
  * @rtc_alarm_irq:     rtc alarm irq number.
  * @regs:              rtc registers description.
- * @rtc_dev:           device structure.
+ * @dev:               device structure
  */
 struct pm8xxx_rtc {
        struct rtc_device *rtc;
        bool allow_set_time;
        int rtc_alarm_irq;
        const struct pm8xxx_rtc_regs *regs;
-       struct device *rtc_dev;
+       struct device *dev;
 };
 
 /*
                                                      "allow-set-time");
 
        rtc_dd->regs = match->data;
-       rtc_dd->rtc_dev = &pdev->dev;
+       rtc_dd->dev = &pdev->dev;
 
        rc = pm8xxx_rtc_enable(rtc_dd);
        if (rc)