summaryrefslogtreecommitdiff
path: root/include/linux/ieee802154.h
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-02 21:43:01 +0100
committerMarcel Holtmann <marcel@holtmann.org>2014-11-02 21:52:02 +0100
commita4164eb4dd3f4f2a22f8bf7b26394e8384f3d9a2 (patch)
tree56a6fb49348ab0064c366fd9b46f4dc4d98491ab /include/linux/ieee802154.h
parent882809fb724c46b8ebc4de0944e94914ceb94e1c (diff)
ieee802154: add missing ULL definition
Running make C=2 occurs warning: constant 0xffffffffffffffff is so big it is unsigned long This patch fix this warning by adding a ULL to the constant definitions. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Reported-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/linux/ieee802154.h')
-rw-r--r--include/linux/ieee802154.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
index 9bba5ca7f0ad..9da7c011fbba 100644
--- a/include/linux/ieee802154.h
+++ b/include/linux/ieee802154.h
@@ -208,7 +208,8 @@ 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 != 0x0000000000000000) || (addr != 0xffffffffffffffff));
+ return ((addr != 0x0000000000000000ULL) ||
+ (addr != 0xffffffffffffffffULL));
}
#endif /* LINUX_IEEE802154_H */