diff options
author | Chun-Yeow Yeoh <yeohchunyeow@gmail.com> | 2013-11-13 02:43:03 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-11-25 14:51:53 -0500 |
commit | 6f101ef04b77bcad71049e07007d34d14cab7b2f (patch) | |
tree | 3d26379af6043c49451ff19fbfda16e431fd1f06 /net/mac80211/sta_info.h | |
parent | 2a901468c221e778af52603e006a53d286e81f90 (diff) |
mac80211: use put_unaligned_le16 in mesh_plink_frame_tx
Use put_unaligned_le16 in mesh_plink_frame_tx.
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 6b0d6c2dcba7..a2c9a4c45aa3 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -390,9 +390,9 @@ struct sta_info { | |||
390 | * Mesh peer link attributes | 390 | * Mesh peer link attributes |
391 | * TODO: move to a sub-structure that is referenced with pointer? | 391 | * TODO: move to a sub-structure that is referenced with pointer? |
392 | */ | 392 | */ |
393 | __le16 llid; | 393 | u16 llid; |
394 | __le16 plid; | 394 | u16 plid; |
395 | __le16 reason; | 395 | u16 reason; |
396 | u8 plink_retries; | 396 | u8 plink_retries; |
397 | bool ignore_plink_timer; | 397 | bool ignore_plink_timer; |
398 | enum nl80211_plink_state plink_state; | 398 | enum nl80211_plink_state plink_state; |