Lines Matching defs:rtc
20 #include <linux/rtc.h>
54 struct rtc_device *rtc;
167 struct rtc_device *rtc;
192 rtc = devm_rtc_allocate_device(&spi->dev);
193 if (IS_ERR(rtc))
194 return PTR_ERR(rtc);
196 pdata->rtc = rtc;
198 rtc->ops = &rs5c348_rtc_ops;
200 return rtc_register_device(rtc);
205 .name = "rtc-rs5c348",
215 MODULE_ALIAS("spi:rtc-rs5c348");