drivers/net: fix eisa_driver probe section mismatch
authorFabian Frederick <fabf@skynet.be>
Sat, 12 Dec 2015 17:24:38 +0000 (18:24 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Dec 2015 05:24:22 +0000 (00:24 -0500)
Some eisa_driver structures used __init probe functions which generates
a warning and could crash if function is called after being deleted.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/3com/3c509.c
drivers/net/ethernet/3com/3c59x.c
drivers/net/ethernet/dec/tulip/de4x5.c
drivers/net/ethernet/hp/hp100.c

index 4547a1b8b958bab25ed6cd73ccd3d0b62112dfaa..7677c745fb30b38bf9371e7ada66c87f14bd4184 100644 (file)
@@ -562,7 +562,7 @@ static void el3_common_remove (struct net_device *dev)
 }
 
 #ifdef CONFIG_EISA
-static int __init el3_eisa_probe (struct device *device)
+static int el3_eisa_probe(struct device *device)
 {
        short i;
        int ioaddr, irq, if_port;
index 2839af00f20cd1618f6522b49db652499359ff30..1c5f3b273e6accb7d1e4f41611158eb9253d3d0d 100644 (file)
@@ -907,7 +907,7 @@ static struct eisa_device_id vortex_eisa_ids[] = {
 };
 MODULE_DEVICE_TABLE(eisa, vortex_eisa_ids);
 
-static int __init vortex_eisa_probe(struct device *device)
+static int vortex_eisa_probe(struct device *device)
 {
        void __iomem *ioaddr;
        struct eisa_device *edev;
index 8966f3159bb2b1da3640e7fe9fd2b579b97457e4..3acde3b9b767c4c025b57130c0e497e62b6cd46c 100644 (file)
@@ -1990,7 +1990,7 @@ SetMulticastFilter(struct net_device *dev)
 
 static u_char de4x5_irq[] = EISA_ALLOWED_IRQ_LIST;
 
-static int __init de4x5_eisa_probe (struct device *gendev)
+static int de4x5_eisa_probe(struct device *gendev)
 {
        struct eisa_device *edev;
        u_long iobase;
index ae6e30d39f0f6b07ac8b9b2fec78bd9eb250e535..1d5c3e16d8f4f4ad1f3ba580ee3a4a9c48663551 100644 (file)
@@ -2843,7 +2843,7 @@ static void cleanup_dev(struct net_device *d)
 }
 
 #ifdef CONFIG_EISA
-static int __init hp100_eisa_probe (struct device *gendev)
+static int hp100_eisa_probe(struct device *gendev)
 {
        struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private));
        struct eisa_device *edev = to_eisa_device(gendev);