summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2010-04-21 10:25:36 +0200
committerJohn W. Linville <linville@tuxdriver.com>2010-04-21 14:15:19 -0400
commit672724403b42da1d276c6cf811e8e34d15efd964 (patch)
tree3664f85476b667625aa37f3493e6bc0791f11ef9
parent81b208a6b6e2923dcc2dd5292f0d2ffe20b5d16f (diff)
downloadlinux-672724403b42da1d276c6cf811e8e34d15efd964.tar.gz
radiotap parser: fix endian annotation
When I updated this from the corresponding
userspace library, an annotation error crept
in -- this variable needs to be annotated as
little endian. No effect on code generation.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--include/net/cfg80211.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 37cebd3aa0f7..5a4efe54cffd 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1643,7 +1643,7 @@ struct ieee80211_radiotap_iterator {
 	const struct ieee80211_radiotap_namespace *current_namespace;
 
 	unsigned char *_arg, *_next_ns_data;
-	uint32_t *_next_bitmap;
+	__le32 *_next_bitmap;
 
 	unsigned char *this_arg;
 	int this_arg_index;