diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2010-04-21 10:25:36 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-21 14:15:19 -0400 |
commit | 672724403b42da1d276c6cf811e8e34d15efd964 (patch) | |
tree | 3664f85476b667625aa37f3493e6bc0791f11ef9 | |
parent | 81b208a6b6e2923dcc2dd5292f0d2ffe20b5d16f (diff) |
radiotap parser: fix endian annotationmaster-2010-04-23master-2010-04-21
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 37cebd3aa0f..5a4efe54cff 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; |