Lines Matching defs:rtc
11 #include <linux/rtc.h>
205 struct rtc_device *rtc;
231 rtc = devm_rtc_allocate_device(&pdev->dev);
232 if (IS_ERR(rtc))
233 return PTR_ERR(rtc);
235 rtc->ops = &ab3100_rtc_ops;
237 rtc->range_max = U32_MAX;
239 platform_set_drvdata(pdev, rtc);
241 return rtc_register_device(rtc);
246 .name = "ab3100-rtc",