linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* modpost warning question
@ 2007-07-25  7:14 Kumar Gala
  2007-07-25  7:27 ` Sam Ravnborg
  2007-07-25  7:55 ` Benjamin Herrenschmidt
  0 siblings, 2 replies; 7+ messages in thread
From: Kumar Gala @ 2007-07-25  7:14 UTC (permalink / raw)
  To: sam; +Cc: linuxppc-dev, linux-kernel, Jeff Garzik, netdev

I'm seeing the following warning:

WARNING: vmlinux.o(.init.text+0x1acdc): Section mismatch: reference to
.exit.text:gfar_mdio_exit (between 'gfar_init' and 'gfar_mdio_init')

I don't understand why its not ok to access .exit.text from .init.text

The following addresses the issue, however I don't particularly like it:

diff --git a/drivers/net/gianfar_mii.c b/drivers/net/gianfar_mii.c
index ac3596f..100bf41 100644
--- a/drivers/net/gianfar_mii.c
+++ b/drivers/net/gianfar_mii.c
@@ -245,7 +245,7 @@ int __init gfar_mdio_init(void)
 	return driver_register(&gianfar_mdio_driver);
 }

-void __exit gfar_mdio_exit(void)
+void gfar_mdio_exit(void)
 {
 	driver_unregister(&gianfar_mdio_driver);
 }
diff --git a/drivers/net/gianfar_mii.h b/drivers/net/gianfar_mii.h
index 5d34004..b373091 100644
--- a/drivers/net/gianfar_mii.h
+++ b/drivers/net/gianfar_mii.h
@@ -42,5 +42,5 @@ struct gfar_mii {
 int gfar_mdio_read(struct mii_bus *bus, int mii_id, int regnum);
 int gfar_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 value);
 int __init gfar_mdio_init(void);
-void __exit gfar_mdio_exit(void);
+void gfar_mdio_exit(void);
 #endif /* GIANFAR_PHY_H */

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-07-25 11:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-25  7:14 modpost warning question Kumar Gala
2007-07-25  7:27 ` Sam Ravnborg
2007-07-25  7:49   ` Kumar Gala
2007-07-25  7:52     ` Sam Ravnborg
2007-07-25 10:08   ` chengong
2007-07-25 11:45     ` Sam Ravnborg
2007-07-25  7:55 ` Benjamin Herrenschmidt

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).