From: Adrian Bunk Date: Tue, 11 Dec 2007 22:23:56 +0000 (+0100) Subject: drivers/net/sis190.c section fix X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c2b75f0cd7cb14874f179d2c09c81f77ad784df2;p=linux-beck.git drivers/net/sis190.c section fix This patch fixes the following section mismatch with CONFIG_HOTPLUG=n: <-- snip --> ... WARNING: vmlinux.o(.init.text.20+0x4cb25): Section mismatch: reference to .exit.text:sis190_mii_remove (between 'sis190_init_one' and 'read_eeprom') ... <-- snip --> Signed-off-by: Adrian Bunk Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 720088396bb9..49f767bef6ae 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -1381,7 +1381,7 @@ out: return rc; } -static void __devexit sis190_mii_remove(struct net_device *dev) +static void sis190_mii_remove(struct net_device *dev) { struct sis190_private *tp = netdev_priv(dev);