Lines Matching defs:rtc
10 * Since the RTC framework performs API locking via rtc->ops_lock the
27 #include <linux/rtc.h>
97 * struct imxdi_dev - private imxdi rtc data
99 * @rtc: pointer to rtc struct
110 struct rtc_device *rtc;
734 /* pass the alarm event to the rtc framework. */
735 rtc_update_irq(imxdi->rtc, 1, RTC_AF | RTC_IRQF);
739 * probe for dryice rtc device
776 imxdi->rtc = devm_rtc_allocate_device(&pdev->dev);
777 if (IS_ERR(imxdi->rtc))
778 return PTR_ERR(imxdi->rtc);
814 imxdi->rtc->ops = &dryice_rtc_ops;
815 imxdi->rtc->range_max = U32_MAX;
817 rc = rtc_register_device(imxdi->rtc);
845 { .compatible = "fsl,imx25-rtc" },