dect
/
linux-2.6
Archived
13
0
Fork 0

gfar: Fix modpost warning

Fix the following modpost warning:

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

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Kumar Gala 2007-07-26 00:52:34 -05:00 committed by Jeff Garzik
parent 55b7b629b7
commit b9daf6c0ff
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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 */