aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ieee802154.h
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2014-11-04 11:55:09 +0300
committerMarcel Holtmann <marcel@holtmann.org>2014-11-04 17:44:48 +0100
commit0d8a52f933f817d0b62955a5a362fb7f2508f06c (patch)
treeb886a45331b0bd09cf4a74d5f9a43e7448a05043 /include/linux/ieee802154.h
parent6lowpan: fix udp header compression when using raw sockets (diff)
downloadlinux-dev-0d8a52f933f817d0b62955a5a362fb7f2508f06c.tar.xz
linux-dev-0d8a52f933f817d0b62955a5a362fb7f2508f06c.zip
ieee802154: || vs && in ieee802154_is_valid_extended_addr()
The ieee802154_is_valid_extended_addr() always returns true because there is a typo. The || should be &&. Neither 0x0000000000000000ULL nor 0xffffffffffffffffULL are valid addresses. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/linux/ieee802154.h')
-rw-r--r--include/linux/ieee802154.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
index 5d9e7459d94b..4c032863cd71 100644
--- a/include/linux/ieee802154.h
+++ b/include/linux/ieee802154.h
@@ -209,7 +209,7 @@ static inline bool ieee802154_is_valid_extended_addr(const __le64 addr)
* This is currently a workaround because neighbor discovery can't
* deal with short addresses types right now.
*/
- return ((addr != cpu_to_le64(0x0000000000000000ULL)) ||
+ return ((addr != cpu_to_le64(0x0000000000000000ULL)) &&
(addr != cpu_to_le64(0xffffffffffffffffULL)));
}