summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-dev.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2018-07-25 09:07:09 -0400
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2018-07-26 09:08:53 -0400
commit8719d3c9188b38db462a77ecd8c7a8e25e7e8c4c (patch)
tree058a9ced72bc0bdebb4cd224a02e2646c0c089c2 /drivers/rtc/rtc-dev.c
parentacecb3ad8b21a519ce4ad728106d45d4e978bb56 (diff)
rtc: simplify rtc_irq_set_state/rtc_irq_set_freq
The PIE doesn't handle tasks anymore, remove the pointer from the interface. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-dev.c')
-rw-r--r--drivers/rtc/rtc-dev.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/rtc/rtc-dev.c b/drivers/rtc/rtc-dev.c
index efa221e8bc22..43d962a9c210 100644
--- a/drivers/rtc/rtc-dev.c
+++ b/drivers/rtc/rtc-dev.c
@@ -341,11 +341,11 @@ static long rtc_dev_ioctl(struct file *file,
341 return rtc_set_time(rtc, &tm); 341 return rtc_set_time(rtc, &tm);
342 342
343 case RTC_PIE_ON: 343 case RTC_PIE_ON:
344 err = rtc_irq_set_state(rtc, NULL, 1); 344 err = rtc_irq_set_state(rtc, 1);
345 break; 345 break;
346 346
347 case RTC_PIE_OFF: 347 case RTC_PIE_OFF:
348 err = rtc_irq_set_state(rtc, NULL, 0); 348 err = rtc_irq_set_state(rtc, 0);
349 break; 349 break;
350 350
351 case RTC_AIE_ON: 351 case RTC_AIE_ON:
@@ -365,7 +365,7 @@ static long rtc_dev_ioctl(struct file *file,
365 return rtc_update_irq_enable(rtc, 0); 365 return rtc_update_irq_enable(rtc, 0);
366 366
367 case RTC_IRQP_SET: 367 case RTC_IRQP_SET:
368 err = rtc_irq_set_freq(rtc, NULL, arg); 368 err = rtc_irq_set_freq(rtc, arg);
369 break; 369 break;
370 370
371 case RTC_IRQP_READ: 371 case RTC_IRQP_READ:
@@ -427,7 +427,7 @@ static int rtc_dev_release(struct inode *inode, struct file *file)
427 /* Keep ioctl until all drivers are converted */ 427 /* Keep ioctl until all drivers are converted */
428 rtc_dev_ioctl(file, RTC_UIE_OFF, 0); 428 rtc_dev_ioctl(file, RTC_UIE_OFF, 0);
429 rtc_update_irq_enable(rtc, 0); 429 rtc_update_irq_enable(rtc, 0);
430 rtc_irq_set_state(rtc, NULL, 0); 430 rtc_irq_set_state(rtc, 0);
431 431
432 clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags); 432 clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
433 return 0; 433 return 0;