commit | a5fe736eaf9bae1b45317313de04b564441b94f2 | [log] [tgz] |
---|---|---|
author | Jeff Garzik <jgarzik@pobox.com> | Mon Jun 27 22:47:18 2005 -0400 |
committer | Jeff Garzik <jgarzik@pobox.com> | Mon Jun 27 22:47:18 2005 -0400 |
tree | 3b194431e6767702fa09f54a39b4c2ae788eaf00 | |
parent | 1bad3f4050b2a641bbfeaddb2717b28247311e9c [diff] [blame] |
Update is_multicast_ether_addr() definition; net/ieee80211.h cleanups.
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index a147825..8a2df4d 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h
@@ -65,7 +65,7 @@ */ static inline int is_multicast_ether_addr(const u8 *addr) { - return addr[0] & 0x01; + return ((addr[0] != 0xff) && (0x01 & addr[0])); } /**