提交 2effca33 编写于 作者: T Tobias Klauser 提交者: David S. Miller

net: depca: Use helpers from linux/etherdevice.h

Signed-off-by: NTobias Klauser <tklauser@distanz.ch>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 abfc89c7
...@@ -1073,13 +1073,13 @@ static int depca_rx(struct net_device *dev) ...@@ -1073,13 +1073,13 @@ static int depca_rx(struct net_device *dev)
i = DEPCA_PKT_STAT_SZ; i = DEPCA_PKT_STAT_SZ;
} }
} }
if (buf[0] & 0x01) { /* Multicast/Broadcast */ if (is_multicast_ether_addr(buf)) {
if ((*(s16 *) & buf[0] == -1) && (*(s16 *) & buf[2] == -1) && (*(s16 *) & buf[4] == -1)) { if (is_broadcast_ether_addr(buf)) {
lp->pktStats.broadcast++; lp->pktStats.broadcast++;
} else { } else {
lp->pktStats.multicast++; lp->pktStats.multicast++;
} }
} else if ((*(s16 *) & buf[0] == *(s16 *) & dev->dev_addr[0]) && (*(s16 *) & buf[2] == *(s16 *) & dev->dev_addr[2]) && (*(s16 *) & buf[4] == *(s16 *) & dev->dev_addr[4])) { } else if (compare_ether_addr(buf, dev->dev_addr) == 0) {
lp->pktStats.unicast++; lp->pktStats.unicast++;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册