Lines Matching defs:rtc
2 /* rtc-sun4v.c: Hypervisor based RTC for SUN4V systems.
14 #include <linux/rtc.h>
79 struct rtc_device *rtc;
81 rtc = devm_rtc_allocate_device(&pdev->dev);
82 if (IS_ERR(rtc))
83 return PTR_ERR(rtc);
85 rtc->ops = &sun4v_rtc_ops;
86 rtc->range_max = U64_MAX;
87 platform_set_drvdata(pdev, rtc);
89 return rtc_register_device(rtc);
94 .name = "rtc-sun4v",