diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-09-17 16:11:17 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:13 -0400 |
commit | 10d024c1b2fd58af8362670d7d6e5ae52fc33353 (patch) | |
tree | dbfb03c539986e2c1270385eb0083aaf0dfca8ab /drivers/net/dummy.c | |
parent | 596c5c97431eab8465739c169401ea611127b9ad (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/dummy.c')
-rw-r--r-- | drivers/net/dummy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/dummy.c b/drivers/net/dummy.c index 756a6bcb038d..84e14f397d9a 100644 --- a/drivers/net/dummy.c +++ b/drivers/net/dummy.c | |||
@@ -71,7 +71,6 @@ static void dummy_setup(struct net_device *dev) | |||
71 | dev->change_mtu = NULL; | 71 | dev->change_mtu = NULL; |
72 | dev->flags |= IFF_NOARP; | 72 | dev->flags |= IFF_NOARP; |
73 | dev->flags &= ~IFF_MULTICAST; | 73 | dev->flags &= ~IFF_MULTICAST; |
74 | SET_MODULE_OWNER(dev); | ||
75 | random_ether_addr(dev->dev_addr); | 74 | random_ether_addr(dev->dev_addr); |
76 | } | 75 | } |
77 | 76 | ||