aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2011-07-03 19:48:13 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-04 23:27:28 -0400
commit29a40f0676c9388a83396306957f11b359c4be1c (patch)
treeaf647655b87473ee7d6ecd734dcc5ee6bc5b4d1a /drivers/net/tulip
parent3e714ad3c2a07ee120044b72222cc20c14959efb (diff)
net: de4x5: Use helpers from linux/etherdevice.h
Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tulip')
-rw-r--r--drivers/net/tulip/de4x5.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c
index d8db2b664ac2..959b41021a65 100644
--- a/drivers/net/tulip/de4x5.c
+++ b/drivers/net/tulip/de4x5.c
@@ -1868,14 +1868,13 @@ de4x5_local_stats(struct net_device *dev, char *buf, int pkt_len)
1868 i = DE4X5_PKT_STAT_SZ; 1868 i = DE4X5_PKT_STAT_SZ;
1869 } 1869 }
1870 } 1870 }
1871 if (buf[0] & 0x01) { /* Multicast/Broadcast */ 1871 if (is_multicast_ether_addr(buf)) {
1872 if ((*(s32 *)&buf[0] == -1) && (*(s16 *)&buf[4] == -1)) { 1872 if (is_broadcast_ether_addr(buf)) {
1873 lp->pktStats.broadcast++; 1873 lp->pktStats.broadcast++;
1874 } else { 1874 } else {
1875 lp->pktStats.multicast++; 1875 lp->pktStats.multicast++;
1876 } 1876 }
1877 } else if ((*(s32 *)&buf[0] == *(s32 *)&dev->dev_addr[0]) && 1877 } else if (compare_ether_addr(buf, dev->dev_addr) == 0) {
1878 (*(s16 *)&buf[4] == *(s16 *)&dev->dev_addr[4])) {
1879 lp->pktStats.unicast++; 1878 lp->pktStats.unicast++;
1880 } 1879 }
1881 1880