diff options
Diffstat (limited to 'drivers/rtc/rtc-pxa.c')
-rw-r--r-- | drivers/rtc/rtc-pxa.c | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c index b15375adbb87..29e867a1aaa8 100644 --- a/drivers/rtc/rtc-pxa.c +++ b/drivers/rtc/rtc-pxa.c | |||
@@ -235,32 +235,34 @@ static int pxa_periodic_irq_set_state(struct device *dev, int enabled) | |||
235 | return 0; | 235 | return 0; |
236 | } | 236 | } |
237 | 237 | ||
238 | static int pxa_rtc_ioctl(struct device *dev, unsigned int cmd, | 238 | static int pxa_alarm_irq_enable(struct device *dev, unsigned int enabled) |
239 | unsigned long arg) | ||
240 | { | 239 | { |
241 | struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev); | 240 | struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev); |
242 | int ret = 0; | ||
243 | 241 | ||
244 | spin_lock_irq(&pxa_rtc->lock); | 242 | spin_lock_irq(&pxa_rtc->lock); |
245 | switch (cmd) { | 243 | |
246 | case RTC_AIE_OFF: | 244 | if (enabled) |
247 | rtsr_clear_bits(pxa_rtc, RTSR_RDALE1); | ||
248 | break; | ||
249 | case RTC_AIE_ON: | ||
250 | rtsr_set_bits(pxa_rtc, RTSR_RDALE1); | 245 | rtsr_set_bits(pxa_rtc, RTSR_RDALE1); |
251 | break; | 246 | else |
252 | case RTC_UIE_OFF: | 247 | rtsr_clear_bits(pxa_rtc, RTSR_RDALE1); |
253 | rtsr_clear_bits(pxa_rtc, RTSR_HZE); | 248 | |
254 | break; | 249 | spin_unlock_irq(&pxa_rtc->lock); |
255 | case RTC_UIE_ON: | 250 | return 0; |
251 | } | ||
252 | |||
253 | static int pxa_update_irq_enable(struct device *dev, unsigned int enabled) | ||
254 | { | ||
255 | struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev); | ||
256 | |||
257 | spin_lock_irq(&pxa_rtc->lock); | ||
258 | |||
259 | if (enabled) | ||
256 | rtsr_set_bits(pxa_rtc, RTSR_HZE); | 260 | rtsr_set_bits(pxa_rtc, RTSR_HZE); |
257 | break; | 261 | else |
258 | default: | 262 | rtsr_clear_bits(pxa_rtc, RTSR_HZE); |
259 | ret = -ENOIOCTLCMD; | ||
260 | } | ||
261 | 263 | ||
262 | spin_unlock_irq(&pxa_rtc->lock); | 264 | spin_unlock_irq(&pxa_rtc->lock); |
263 | return ret; | 265 | return 0; |
264 | } | 266 | } |
265 | 267 | ||
266 | static int pxa_rtc_read_time(struct device *dev, struct rtc_time *tm) | 268 | static int pxa_rtc_read_time(struct device *dev, struct rtc_time *tm) |
@@ -339,11 +341,12 @@ static int pxa_rtc_proc(struct device *dev, struct seq_file *seq) | |||
339 | static const struct rtc_class_ops pxa_rtc_ops = { | 341 | static const struct rtc_class_ops pxa_rtc_ops = { |
340 | .open = pxa_rtc_open, | 342 | .open = pxa_rtc_open, |
341 | .release = pxa_rtc_release, | 343 | .release = pxa_rtc_release, |
342 | .ioctl = pxa_rtc_ioctl, | ||
343 | .read_time = pxa_rtc_read_time, | 344 | .read_time = pxa_rtc_read_time, |
344 | .set_time = pxa_rtc_set_time, | 345 | .set_time = pxa_rtc_set_time, |
345 | .read_alarm = pxa_rtc_read_alarm, | 346 | .read_alarm = pxa_rtc_read_alarm, |
346 | .set_alarm = pxa_rtc_set_alarm, | 347 | .set_alarm = pxa_rtc_set_alarm, |
348 | .alarm_irq_enable = pxa_alarm_irq_enable, | ||
349 | .update_irq_enable = pxa_update_irq_enable, | ||
347 | .proc = pxa_rtc_proc, | 350 | .proc = pxa_rtc_proc, |
348 | .irq_set_state = pxa_periodic_irq_set_state, | 351 | .irq_set_state = pxa_periodic_irq_set_state, |
349 | .irq_set_freq = pxa_periodic_irq_set_freq, | 352 | .irq_set_freq = pxa_periodic_irq_set_freq, |