diff options
author | Peter Chubb <peterc@gelato.unsw.edu.au> | 2005-09-03 17:05:06 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-05 18:04:19 -0400 |
commit | dc85dec68880176c8ba05f68218a161964cada46 (patch) | |
tree | 33d78bd454e1c6d7d459f009ca9c6ff0ce345536 /drivers | |
parent | 9d8cc1b6c3cba2be61c0884e3a04dd6baea70654 (diff) |
[PATCH] 'mdio_bus_exit' in discarded section .text.exit
When building with CONFIG_PHYLIB=y on Itanium, I see:
`mdio_bus_exit' referenced in section `.init.text' of
drivers/built-in.o: defined in discarded section `.exit.text' of
drivers/built-in.o
I believe that mdio_bus_exit should not be declared __exit, because it is
referencesd from __init sections in, say, phy_init().
Signed-off-by: Peter Chubb <peterc@gelato.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/mdio_bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c index 5e81494e9a9a..90630672703d 100644 --- a/drivers/net/phy/mdio_bus.c +++ b/drivers/net/phy/mdio_bus.c | |||
@@ -170,7 +170,7 @@ int __init mdio_bus_init(void) | |||
170 | return bus_register(&mdio_bus_type); | 170 | return bus_register(&mdio_bus_type); |
171 | } | 171 | } |
172 | 172 | ||
173 | void __exit mdio_bus_exit(void) | 173 | void mdio_bus_exit(void) |
174 | { | 174 | { |
175 | bus_unregister(&mdio_bus_type); | 175 | bus_unregister(&mdio_bus_type); |
176 | } | 176 | } |