aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/bluetooth/bnep/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c
index a779ec703323..88884d1d95fd 100644
--- a/net/bluetooth/bnep/core.c
+++ b/net/bluetooth/bnep/core.c
@@ -69,7 +69,7 @@ static struct bnep_session *__bnep_get_session(u8 *dst)
69 BT_DBG(""); 69 BT_DBG("");
70 70
71 list_for_each_entry(s, &bnep_session_list, list) 71 list_for_each_entry(s, &bnep_session_list, list)
72 if (!compare_ether_addr(dst, s->eh.h_source)) 72 if (ether_addr_equal(dst, s->eh.h_source))
73 return s; 73 return s;
74 74
75 return NULL; 75 return NULL;
@@ -422,10 +422,10 @@ static inline int bnep_tx_frame(struct bnep_session *s, struct sk_buff *skb)
422 iv[il++] = (struct kvec) { &type, 1 }; 422 iv[il++] = (struct kvec) { &type, 1 };
423 len++; 423 len++;
424 424
425 if (compress_src && !compare_ether_addr(eh->h_dest, s->eh.h_source)) 425 if (compress_src && ether_addr_equal(eh->h_dest, s->eh.h_source))
426 type |= 0x01; 426 type |= 0x01;
427 427
428 if (compress_dst && !compare_ether_addr(eh->h_source, s->eh.h_dest)) 428 if (compress_dst && ether_addr_equal(eh->h_source, s->eh.h_dest))
429 type |= 0x02; 429 type |= 0x02;
430 430
431 if (type) 431 if (type)