* [PATCH]: change rivafb_remove to __devexit
@ 2007-02-08 16:42 Prarit Bhargava
0 siblings, 0 replies; 3+ messages in thread
From: Prarit Bhargava @ 2007-02-08 16:42 UTC (permalink / raw)
To: linux-fbdev-devel, adaplas; +Cc: Prarit Bhargava
Change rivafb_remove to __deviexit to fix MODPOST warnings:
WARNING: drivers/video/riva/rivafb.o - Section mismatch: reference to
.exit.text:rivafb_remove from .data.rel.local after 'rivafb_driver' (at offset 0x28)
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
--- linux-2.6.19.ia64.orig/drivers/video/riva/fbdev.c 2007-02-07 09:56:37.000000000 -0500
+++ linux-2.6.19.ia64/drivers/video/riva/fbdev.c 2007-02-08 11:39:35.000000000 -0500
@@ -2154,7 +2154,7 @@ err_ret:
return ret;
}
-static void __exit rivafb_remove(struct pci_dev *pd)
+static void __devexit rivafb_remove(struct pci_dev *pd)
{
struct fb_info *info = pci_get_drvdata(pd);
struct riva_par *par = info->par;
@@ -2232,7 +2232,7 @@ static struct pci_driver rivafb_driver =
.name = "rivafb",
.id_table = rivafb_pci_tbl,
.probe = rivafb_probe,
- .remove = __exit_p(rivafb_remove),
+ .remove = __devexit_p(rivafb_remove),
};
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH]: change rivafb_remove to __devexit
@ 2007-02-20 16:13 Prarit Bhargava
2007-02-21 21:32 ` James Simmons
0 siblings, 1 reply; 3+ messages in thread
From: Prarit Bhargava @ 2007-02-20 16:13 UTC (permalink / raw)
To: linux-kernel, akpm, linux-fbdev-devel, adaplas; +Cc: Prarit Bhargava
Resubmitting with wider audience (akpm & lkml).
Change rivafb_remove to __deviexit to fix MODPOST warnings:
WARNING: drivers/video/riva/rivafb.o - Section mismatch: reference to
.exit.text:rivafb_remove from .data.rel.local after 'rivafb_driver' (at offset 0x28)
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
--- linux-2.6.19.ia64.orig/drivers/video/riva/fbdev.c 2007-02-07 09:56:37.000000000 -0500
+++ linux-2.6.19.ia64/drivers/video/riva/fbdev.c 2007-02-08 11:39:35.000000000 -0500
@@ -2154,7 +2154,7 @@ err_ret:
return ret;
}
-static void __exit rivafb_remove(struct pci_dev *pd)
+static void __devexit rivafb_remove(struct pci_dev *pd)
{
struct fb_info *info = pci_get_drvdata(pd);
struct riva_par *par = info->par;
@@ -2232,7 +2232,7 @@ static struct pci_driver rivafb_driver =
.name = "rivafb",
.id_table = rivafb_pci_tbl,
.probe = rivafb_probe,
- .remove = __exit_p(rivafb_remove),
+ .remove = __devexit_p(rivafb_remove),
};
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH]: change rivafb_remove to __devexit
2007-02-20 16:13 Prarit Bhargava
@ 2007-02-21 21:32 ` James Simmons
0 siblings, 0 replies; 3+ messages in thread
From: James Simmons @ 2007-02-21 21:32 UTC (permalink / raw)
To: Prarit Bhargava; +Cc: adaplas, akpm, linux-fbdev-devel, linux-kernel
Acked-By: James Simmons <jsimmons@infradead.org>
On Tue, 20 Feb 2007, Prarit Bhargava wrote:
> Resubmitting with wider audience (akpm & lkml).
>
> Change rivafb_remove to __deviexit to fix MODPOST warnings:
>
> WARNING: drivers/video/riva/rivafb.o - Section mismatch: reference to
> .exit.text:rivafb_remove from .data.rel.local after 'rivafb_driver' (at offset 0x28)
>
> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
>
> --- linux-2.6.19.ia64.orig/drivers/video/riva/fbdev.c 2007-02-07 09:56:37.000000000 -0500
> +++ linux-2.6.19.ia64/drivers/video/riva/fbdev.c 2007-02-08 11:39:35.000000000 -0500
> @@ -2154,7 +2154,7 @@ err_ret:
> return ret;
> }
>
> -static void __exit rivafb_remove(struct pci_dev *pd)
> +static void __devexit rivafb_remove(struct pci_dev *pd)
> {
> struct fb_info *info = pci_get_drvdata(pd);
> struct riva_par *par = info->par;
> @@ -2232,7 +2232,7 @@ static struct pci_driver rivafb_driver =
> .name = "rivafb",
> .id_table = rivafb_pci_tbl,
> .probe = rivafb_probe,
> - .remove = __exit_p(rivafb_remove),
> + .remove = __devexit_p(rivafb_remove),
> };
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-02-21 21:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-08 16:42 [PATCH]: change rivafb_remove to __devexit Prarit Bhargava
-- strict thread matches above, loose matches on Subject: below --
2007-02-20 16:13 Prarit Bhargava
2007-02-21 21:32 ` James Simmons
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).