diff options
author | David Brownell <david-b@pacbell.net> | 2007-05-08 03:33:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:18 -0400 |
commit | ab6a2d70d18edc7a716ef3127b9e13382faec98c (patch) | |
tree | 6de624dfcbd0181e54e21f1730d2a52ae9822c47 /drivers/rtc/rtc-vr41xx.c | |
parent | 5726fb2012f0d96153113ddb7f988a0daea587ce (diff) |
rtc: rtc interfaces don't use class_device
This patch removes class_device from the programming interface that the RTC
framework exposes to the rest of the kernel. Now an rtc_device is passed,
which is more type-safe and streamlines all the relevant code.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Acked-By: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-vr41xx.c')
-rw-r--r-- | drivers/rtc/rtc-vr41xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index e40322b71938..e9f9c5489468 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
@@ -275,7 +275,7 @@ static irqreturn_t elapsedtime_interrupt(int irq, void *dev_id) | |||
275 | 275 | ||
276 | rtc2_write(RTCINTREG, ELAPSEDTIME_INT); | 276 | rtc2_write(RTCINTREG, ELAPSEDTIME_INT); |
277 | 277 | ||
278 | rtc_update_irq(&rtc->class_dev, 1, RTC_AF); | 278 | rtc_update_irq(rtc, 1, RTC_AF); |
279 | 279 | ||
280 | return IRQ_HANDLED; | 280 | return IRQ_HANDLED; |
281 | } | 281 | } |
@@ -291,7 +291,7 @@ static irqreturn_t rtclong1_interrupt(int irq, void *dev_id) | |||
291 | rtc1_write(RTCL1LREG, count); | 291 | rtc1_write(RTCL1LREG, count); |
292 | rtc1_write(RTCL1HREG, count >> 16); | 292 | rtc1_write(RTCL1HREG, count >> 16); |
293 | 293 | ||
294 | rtc_update_irq(&rtc->class_dev, 1, RTC_PF); | 294 | rtc_update_irq(rtc, 1, RTC_PF); |
295 | 295 | ||
296 | return IRQ_HANDLED; | 296 | return IRQ_HANDLED; |
297 | } | 297 | } |