diff options
author | Joe Perches <joe@perches.com> | 2013-09-01 16:11:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-03 22:34:47 -0400 |
commit | 951fd874c3b014c4abf38a8e588d4687b98fedb4 (patch) | |
tree | e9a6215e7a00efe671471b3f8d6bf180572f5e0b /net/llc/af_llc.c | |
parent | 7367d0b573d149550d2ae25c402984b98f8f422e (diff) |
llc: Use normal etherdevice.h tests
Convert the llc_<foo> static inlines to the
equivalents from etherdevice.h and remove
the llc_<foo> static inline functions.
llc_mac_null -> is_zero_ether_addr
llc_mac_multicast -> is_multicast_ether_addr
llc_mac_match -> ether_addr_equal
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/llc/af_llc.c')
-rw-r--r-- | net/llc/af_llc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c index 48aaa89253e0..6cba486353e8 100644 --- a/net/llc/af_llc.c +++ b/net/llc/af_llc.c | |||
@@ -321,12 +321,12 @@ static int llc_ui_bind(struct socket *sock, struct sockaddr *uaddr, int addrlen) | |||
321 | if (llc->dev) { | 321 | if (llc->dev) { |
322 | if (!addr->sllc_arphrd) | 322 | if (!addr->sllc_arphrd) |
323 | addr->sllc_arphrd = llc->dev->type; | 323 | addr->sllc_arphrd = llc->dev->type; |
324 | if (llc_mac_null(addr->sllc_mac)) | 324 | if (is_zero_ether_addr(addr->sllc_mac)) |
325 | memcpy(addr->sllc_mac, llc->dev->dev_addr, | 325 | memcpy(addr->sllc_mac, llc->dev->dev_addr, |
326 | IFHWADDRLEN); | 326 | IFHWADDRLEN); |
327 | if (addr->sllc_arphrd != llc->dev->type || | 327 | if (addr->sllc_arphrd != llc->dev->type || |
328 | !llc_mac_match(addr->sllc_mac, | 328 | !ether_addr_equal(addr->sllc_mac, |
329 | llc->dev->dev_addr)) { | 329 | llc->dev->dev_addr)) { |
330 | rc = -EINVAL; | 330 | rc = -EINVAL; |
331 | llc->dev = NULL; | 331 | llc->dev = NULL; |
332 | } | 332 | } |