aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/appletalk
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-09-17 16:11:17 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:51:13 -0400
commit10d024c1b2fd58af8362670d7d6e5ae52fc33353 (patch)
treedbfb03c539986e2c1270385eb0083aaf0dfca8ab /drivers/net/appletalk
parent596c5c97431eab8465739c169401ea611127b9ad (diff)
[NET]: Nuke SET_MODULE_OWNER macro.
It's been a useless no-op for long enough in 2.6 so I figured it's time to remove it. The number of people that could object because they're maintaining unified 2.4 and 2.6 drivers is probably rather small. [ Handled drivers added by netdev tree and some missed IRDA cases... -DaveM ] Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Jeff Garzik <jeff@garzik.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/appletalk')
-rw-r--r--drivers/net/appletalk/cops.c2
-rw-r--r--drivers/net/appletalk/ipddp.c1
-rw-r--r--drivers/net/appletalk/ltpc.c2
3 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/appletalk/cops.c b/drivers/net/appletalk/cops.c
index da6ffa8cd81e..c4b560d42a67 100644
--- a/drivers/net/appletalk/cops.c
+++ b/drivers/net/appletalk/cops.c
@@ -235,8 +235,6 @@ struct net_device * __init cops_probe(int unit)
235 base_addr = dev->base_addr = io; 235 base_addr = dev->base_addr = io;
236 } 236 }
237 237
238 SET_MODULE_OWNER(dev);
239
240 if (base_addr > 0x1ff) { /* Check a single specified location. */ 238 if (base_addr > 0x1ff) { /* Check a single specified location. */
241 err = cops_probe1(dev, base_addr); 239 err = cops_probe1(dev, base_addr);
242 } else if (base_addr != 0) { /* Don't probe at all. */ 240 } else if (base_addr != 0) { /* Don't probe at all. */
diff --git a/drivers/net/appletalk/ipddp.c b/drivers/net/appletalk/ipddp.c
index f22e46dfd770..56cb96794026 100644
--- a/drivers/net/appletalk/ipddp.c
+++ b/drivers/net/appletalk/ipddp.c
@@ -65,7 +65,6 @@ static struct net_device * __init ipddp_init(void)
65 if (!dev) 65 if (!dev)
66 return ERR_PTR(-ENOMEM); 66 return ERR_PTR(-ENOMEM);
67 67
68 SET_MODULE_OWNER(dev);
69 strcpy(dev->name, "ipddp%d"); 68 strcpy(dev->name, "ipddp%d");
70 69
71 if (version_printed++ == 0) 70 if (version_printed++ == 0)
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c
index 6a6cbd331a16..cb4744e56905 100644
--- a/drivers/net/appletalk/ltpc.c
+++ b/drivers/net/appletalk/ltpc.c
@@ -1046,8 +1046,6 @@ struct net_device * __init ltpc_probe(void)
1046 if (!dev) 1046 if (!dev)
1047 goto out; 1047 goto out;
1048 1048
1049 SET_MODULE_OWNER(dev);
1050
1051 /* probe for the I/O port address */ 1049 /* probe for the I/O port address */
1052 1050
1053 if (io != 0x240 && request_region(0x220,8,"ltpc")) { 1051 if (io != 0x240 && request_region(0x220,8,"ltpc")) {