Skip to content

Commit

Permalink
radiotap parser: fix endian annotation
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
  • Loading branch information
jmberg authored and linvjw committed Apr 21, 2010
1 parent 81b208a commit 6727244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/net/cfg80211.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6727244

Please sign in to comment.