diff options
Diffstat (limited to 'drivers/rtc/class.c')
| -rw-r--r-- | drivers/rtc/class.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c index 2ed970d61da1..722d683e0b0f 100644 --- a/drivers/rtc/class.c +++ b/drivers/rtc/class.c @@ -161,6 +161,9 @@ static struct rtc_device *rtc_allocate_device(void)  	device_initialize(&rtc->dev); +	/* Drivers can revise this default after allocating the device. */ +	rtc->set_offset_nsec =  NSEC_PER_SEC / 2; +  	rtc->irq_freq = 1;  	rtc->max_user_freq = 64;  	rtc->dev.class = rtc_class; |