diff options
Diffstat (limited to 'drivers/net/epic100.c')
-rw-r--r-- | drivers/net/epic100.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/epic100.c b/drivers/net/epic100.c index a67650ccf084..8f37c98dcb7c 100644 --- a/drivers/net/epic100.c +++ b/drivers/net/epic100.c | |||
@@ -26,8 +26,8 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | #define DRV_NAME "epic100" | 28 | #define DRV_NAME "epic100" |
29 | #define DRV_VERSION "2.0" | 29 | #define DRV_VERSION "2.1" |
30 | #define DRV_RELDATE "June 27, 2006" | 30 | #define DRV_RELDATE "Sept 11, 2006" |
31 | 31 | ||
32 | /* The user-configurable values. | 32 | /* The user-configurable values. |
33 | These may be modified when a driver module is loaded.*/ | 33 | These may be modified when a driver module is loaded.*/ |
@@ -1386,7 +1386,6 @@ static void set_rx_mode(struct net_device *dev) | |||
1386 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ | 1386 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ |
1387 | outl(0x002C, ioaddr + RxCtrl); | 1387 | outl(0x002C, ioaddr + RxCtrl); |
1388 | /* Unconditionally log net taps. */ | 1388 | /* Unconditionally log net taps. */ |
1389 | printk(KERN_INFO "%s: Promiscuous mode enabled.\n", dev->name); | ||
1390 | memset(mc_filter, 0xff, sizeof(mc_filter)); | 1389 | memset(mc_filter, 0xff, sizeof(mc_filter)); |
1391 | } else if ((dev->mc_count > 0) || (dev->flags & IFF_ALLMULTI)) { | 1390 | } else if ((dev->mc_count > 0) || (dev->flags & IFF_ALLMULTI)) { |
1392 | /* There is apparently a chip bug, so the multicast filter | 1391 | /* There is apparently a chip bug, so the multicast filter |