Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c2b75f0cd7cb14874f179d2c09c81f77ad784df2
Commit:     c2b75f0cd7cb14874f179d2c09c81f77ad784df2
Parent:     8e9859184031ac1b0a0234b8671a90cfcd333666
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Tue Dec 11 23:23:56 2007 +0100
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Fri Dec 14 15:26:19 2007 -0500

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/sis190.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c
index 7200883..49f767b 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);
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to