mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
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 <bunk@kernel.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
8e98591840
commit
c2b75f0cd7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue