diff options
author | Yauhen Kharuzhy <jekhor@gmail.com> | 2008-10-29 17:00:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-30 14:38:46 -0400 |
commit | eb944db0cfeb0ee934e2a74d5b3516f80cf2c208 (patch) | |
tree | 7e91ebf253d2a7a51d5cea4386e718989b729a0d /drivers/rtc | |
parent | e11e3643f300f2e3a3ea21658e9f80b412c2c8a1 (diff) |
rtc-s3c: fix section mismatch warnings
Warnings was appeared when compile rtc-s3c.c because
platform_driver structure s3c2410_rtcdrv has wrong name.
Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
Acked-by: Alessandro Zummo <a.zummo@towertech.it>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-s3c.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c index 910bc704939c..340d03be8206 100644 --- a/drivers/rtc/rtc-s3c.c +++ b/drivers/rtc/rtc-s3c.c | |||
@@ -507,7 +507,7 @@ static int s3c_rtc_resume(struct platform_device *pdev) | |||
507 | #define s3c_rtc_resume NULL | 507 | #define s3c_rtc_resume NULL |
508 | #endif | 508 | #endif |
509 | 509 | ||
510 | static struct platform_driver s3c2410_rtcdrv = { | 510 | static struct platform_driver s3c2410_rtc_driver = { |
511 | .probe = s3c_rtc_probe, | 511 | .probe = s3c_rtc_probe, |
512 | .remove = __devexit_p(s3c_rtc_remove), | 512 | .remove = __devexit_p(s3c_rtc_remove), |
513 | .suspend = s3c_rtc_suspend, | 513 | .suspend = s3c_rtc_suspend, |
@@ -523,12 +523,12 @@ static char __initdata banner[] = "S3C24XX RTC, (c) 2004,2006 Simtec Electronics | |||
523 | static int __init s3c_rtc_init(void) | 523 | static int __init s3c_rtc_init(void) |
524 | { | 524 | { |
525 | printk(banner); | 525 | printk(banner); |
526 | return platform_driver_register(&s3c2410_rtcdrv); | 526 | return platform_driver_register(&s3c2410_rtc_driver); |
527 | } | 527 | } |
528 | 528 | ||
529 | static void __exit s3c_rtc_exit(void) | 529 | static void __exit s3c_rtc_exit(void) |
530 | { | 530 | { |
531 | platform_driver_unregister(&s3c2410_rtcdrv); | 531 | platform_driver_unregister(&s3c2410_rtc_driver); |
532 | } | 532 | } |
533 | 533 | ||
534 | module_init(s3c_rtc_init); | 534 | module_init(s3c_rtc_init); |