diff options
author | Andy Gospodarek <andy@greyhouse.net> | 2006-09-08 08:41:48 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-11 09:06:34 -0400 |
commit | 2a2fc64481ed48ef0952d03979b053d1e6ba89dc (patch) | |
tree | ba43d147d00fbd4bd68285ce869c98be13967bb4 /drivers/net/forcedeth.c | |
parent | 9f486ae1d9ea700a952b77a8881de05ebc1610c3 (diff) |
[PATCH] cleanup unnecessary forcedeth printk
This removes unnecessary messages that show up every time I put my
ethernet card in promiscuous mode. I'm already getting notification
from the networking layer, I don't need notification from the driver as
well.
There are probably other drivers that do this as well -- I'll look
around and see what I can find.
Signed-off-by: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/forcedeth.c')
-rw-r--r-- | drivers/net/forcedeth.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index e90d27b78121..59f9a515c07c 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
@@ -2080,7 +2080,6 @@ static void nv_set_multicast(struct net_device *dev) | |||
2080 | memset(mask, 0, sizeof(mask)); | 2080 | memset(mask, 0, sizeof(mask)); |
2081 | 2081 | ||
2082 | if (dev->flags & IFF_PROMISC) { | 2082 | if (dev->flags & IFF_PROMISC) { |
2083 | printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n", dev->name); | ||
2084 | pff |= NVREG_PFF_PROMISC; | 2083 | pff |= NVREG_PFF_PROMISC; |
2085 | } else { | 2084 | } else { |
2086 | pff |= NVREG_PFF_MYADDR; | 2085 | pff |= NVREG_PFF_MYADDR; |