From: Johannes Berg Date: Wed, 21 Apr 2010 08:25:36 +0000 (+0200) Subject: radiotap parser: fix endian annotation X-Git-Tag: v2.6.35-rc1~473^2~167^2~141 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=672724403b42da1d276c6cf811e8e34d15efd964;p=linux-block.git 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 Signed-off-by: John W. Linville --- 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;