imx_sc_rtc         25 drivers/rtc/rtc-imx-sc.c static struct rtc_device *imx_sc_rtc;
imx_sc_rtc        142 drivers/rtc/rtc-imx-sc.c 	rtc_update_irq(imx_sc_rtc, 1, RTC_IRQF | RTC_AF);
imx_sc_rtc        161 drivers/rtc/rtc-imx-sc.c 	imx_sc_rtc = devm_rtc_allocate_device(&pdev->dev);
imx_sc_rtc        162 drivers/rtc/rtc-imx-sc.c 	if (IS_ERR(imx_sc_rtc))
imx_sc_rtc        163 drivers/rtc/rtc-imx-sc.c 		return PTR_ERR(imx_sc_rtc);
imx_sc_rtc        165 drivers/rtc/rtc-imx-sc.c 	imx_sc_rtc->ops = &imx_sc_rtc_ops;
imx_sc_rtc        166 drivers/rtc/rtc-imx-sc.c 	imx_sc_rtc->range_min = 0;
imx_sc_rtc        167 drivers/rtc/rtc-imx-sc.c 	imx_sc_rtc->range_max = U32_MAX;
imx_sc_rtc        169 drivers/rtc/rtc-imx-sc.c 	ret = rtc_register_device(imx_sc_rtc);