From: Kris Katterjohn Date: Tue, 17 Jan 2006 23:15:38 +0000 (-0800) Subject: [NET]: Use is_zero_ether_addr() in net/core/netpoll.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3860288ee8298bf2784e9a0c37d26d3a82941e35;p=linux-beck.git [NET]: Use is_zero_ether_addr() in net/core/netpoll.c This replaces a memcmp() with is_zero_ether_addr(). Signed-off-by: Kris Katterjohn Signed-off-by: David S. Miller --- diff --git a/net/core/netpoll.c b/net/core/netpoll.c index 281a632fa6a6..ea51f8d02eb8 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c @@ -703,7 +703,7 @@ int netpoll_setup(struct netpoll *np) } } - if (!memcmp(np->local_mac, "\0\0\0\0\0\0", 6) && ndev->dev_addr) + if (is_zero_ether_addr(np->local_mac) && ndev->dev_addr) memcpy(np->local_mac, ndev->dev_addr, 6); if (!np->local_ip) {