diff options
author | Joe Perches <joe@perches.com> | 2007-10-03 20:59:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:42 -0400 |
commit | 0795af5729b18218767fab27c44b1384f72dc9ad (patch) | |
tree | 67c16df84aa6ec219340b8ea1b5cfb0e8150a216 /include/net | |
parent | 95ea36275f3c9a1d3d04c217b4b576c657c4e70e (diff) |
[NET]: Introduce and use print_mac() and DECLARE_MAC_BUF()
This is nicer than the MAC_FMT stuff.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ieee80211.h | 5 | ||||
-rw-r--r-- | include/net/mac80211.h | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h index bbd85cd61ed5..164d13211165 100644 --- a/include/net/ieee80211.h +++ b/include/net/ieee80211.h | |||
@@ -119,11 +119,6 @@ do { if (ieee80211_debug_level & (level)) \ | |||
119 | #define IEEE80211_DEBUG(level, fmt, args...) do {} while (0) | 119 | #define IEEE80211_DEBUG(level, fmt, args...) do {} while (0) |
120 | #endif /* CONFIG_IEEE80211_DEBUG */ | 120 | #endif /* CONFIG_IEEE80211_DEBUG */ |
121 | 121 | ||
122 | /* debug macros not dependent on CONFIG_IEEE80211_DEBUG */ | ||
123 | |||
124 | #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x" | ||
125 | #define MAC_ARG(x) ((u8*)(x))[0],((u8*)(x))[1],((u8*)(x))[2],((u8*)(x))[3],((u8*)(x))[4],((u8*)(x))[5] | ||
126 | |||
127 | /* escape_essid() is intended to be used in debug (and possibly error) | 122 | /* escape_essid() is intended to be used in debug (and possibly error) |
128 | * messages. It should never be used for passing essid to user space. */ | 123 | * messages. It should never be used for passing essid to user space. */ |
129 | const char *escape_essid(const char *essid, u8 essid_len); | 124 | const char *escape_essid(const char *essid, u8 essid_len); |
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index a2c14f95b9a0..947f3c820e42 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -1106,8 +1106,4 @@ static inline int ieee80211_get_morefrag(struct ieee80211_hdr *hdr) | |||
1106 | IEEE80211_FCTL_MOREFRAGS) != 0; | 1106 | IEEE80211_FCTL_MOREFRAGS) != 0; |
1107 | } | 1107 | } |
1108 | 1108 | ||
1109 | #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x" | ||
1110 | #define MAC_ARG(x) ((u8*)(x))[0], ((u8*)(x))[1], ((u8*)(x))[2], \ | ||
1111 | ((u8*)(x))[3], ((u8*)(x))[4], ((u8*)(x))[5] | ||
1112 | |||
1113 | #endif /* MAC80211_H */ | 1109 | #endif /* MAC80211_H */ |