LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] rtc-s3c: Fix section mismatch warnings
@ 2008-10-16 15:01 Yauhen Kharuzhy
2008-10-16 15:15 ` [rtc-linux] " Alessandro Zummo
0 siblings, 1 reply; 5+ messages in thread
From: Yauhen Kharuzhy @ 2008-10-16 15:01 UTC (permalink / raw)
To: Alessandro Zummo; +Cc: rtc-linux, linux-kernel, Yauhen Kharuzhy
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>
--
1.5.6.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rtc-linux] [PATCH] rtc-s3c: Fix section mismatch warnings
2008-10-16 15:01 [PATCH] rtc-s3c: Fix section mismatch warnings Yauhen Kharuzhy
@ 2008-10-16 15:15 ` Alessandro Zummo
2008-10-16 15:48 ` Yauhen Kharuzhy
0 siblings, 1 reply; 5+ messages in thread
From: Alessandro Zummo @ 2008-10-16 15:15 UTC (permalink / raw)
To: rtc-linux; +Cc: jekhor, linux-kernel
On Thu, 16 Oct 2008 18:01:41 +0300
Yauhen Kharuzhy <jekhor@gmail.com> wrote:
>
> 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>
-ENOPATCH :)
--
Best regards,
Alessandro Zummo,
Tower Technologies - Torino, Italy
http://www.towertech.it
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] rtc-s3c: Fix section mismatch warnings
2008-10-16 15:15 ` [rtc-linux] " Alessandro Zummo
@ 2008-10-16 15:48 ` Yauhen Kharuzhy
2008-10-21 18:22 ` [rtc-linux] " Alessandro Zummo
2008-10-21 18:41 ` Alessandro Zummo
0 siblings, 2 replies; 5+ messages in thread
From: Yauhen Kharuzhy @ 2008-10-16 15:48 UTC (permalink / raw)
To: Alessandro Zummo; +Cc: rtc-linux, linux-kernel, Yauhen Kharuzhy
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>
---
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 e7d19b6..9a92ee1 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)
#define s3c_rtc_resume NULL
#endif
-static struct platform_driver s3c2410_rtcdrv = {
+static struct platform_driver s3c2410_rtc_driver = {
.probe = s3c_rtc_probe,
.remove = __devexit_p(s3c_rtc_remove),
.suspend = s3c_rtc_suspend,
@@ -523,12 +523,12 @@ static char __initdata banner[] = "S3C24XX RTC, (c) 2004,2006 Simtec Electronics
static int __init s3c_rtc_init(void)
{
printk(banner);
- return platform_driver_register(&s3c2410_rtcdrv);
+ return platform_driver_register(&s3c2410_rtc_driver);
}
static void __exit s3c_rtc_exit(void)
{
- platform_driver_unregister(&s3c2410_rtcdrv);
+ platform_driver_unregister(&s3c2410_rtc_driver);
}
module_init(s3c_rtc_init);
--
1.5.6.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rtc-linux] [PATCH] rtc-s3c: Fix section mismatch warnings
2008-10-16 15:48 ` Yauhen Kharuzhy
@ 2008-10-21 18:22 ` Alessandro Zummo
2008-10-21 18:41 ` Alessandro Zummo
1 sibling, 0 replies; 5+ messages in thread
From: Alessandro Zummo @ 2008-10-21 18:22 UTC (permalink / raw)
To: rtc-linux; +Cc: jekhor, Alessandro Zummo, linux-kernel, akpm
On Thu, 16 Oct 2008 18:48:30 +0300
Yauhen Kharuzhy <jekhor@gmail.com> wrote:
> 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>
--
Best regards,
Alessandro Zummo,
Tower Technologies - Torino, Italy
http://www.towertech.it
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] rtc-s3c: Fix section mismatch warnings
2008-10-16 15:48 ` Yauhen Kharuzhy
2008-10-21 18:22 ` [rtc-linux] " Alessandro Zummo
@ 2008-10-21 18:41 ` Alessandro Zummo
1 sibling, 0 replies; 5+ messages in thread
From: Alessandro Zummo @ 2008-10-21 18:41 UTC (permalink / raw)
To: Yauhen Kharuzhy; +Cc: rtc-linux, linux-kernel, Yauhen Kharuzhy, akpm
On Thu, 16 Oct 2008 18:48:30 +0300
Yauhen Kharuzhy <jekhor@gmail.com> wrote:
> 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>
--
Best regards,
Alessandro Zummo,
Tower Technologies - Torino, Italy
http://www.towertech.it
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-10-21 18:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-16 15:01 [PATCH] rtc-s3c: Fix section mismatch warnings Yauhen Kharuzhy
2008-10-16 15:15 ` [rtc-linux] " Alessandro Zummo
2008-10-16 15:48 ` Yauhen Kharuzhy
2008-10-21 18:22 ` [rtc-linux] " Alessandro Zummo
2008-10-21 18:41 ` Alessandro Zummo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).