diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2008-02-29 17:30:32 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-06 16:40:50 -0500 |
commit | aa2b5928433ce6ba98cf31ab048c7882aeae56a3 (patch) | |
tree | a1dcf816d554a94491e5326e6e86947a7ee97c2c /net/mac80211/mesh_plink.c | |
parent | 4f5d4c4da89c7aa0fa194a7fd3e52233067932ea (diff) |
mac80211: clean up use of endianness conversion functions
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mesh_plink.c')
-rw-r--r-- | net/mac80211/mesh_plink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c index 307c90e61df6..23d951a83668 100644 --- a/net/mac80211/mesh_plink.c +++ b/net/mac80211/mesh_plink.c | |||
@@ -557,7 +557,7 @@ void mesh_rx_plink_frame(struct net_device *dev, struct ieee80211_mgmt *mgmt, | |||
557 | 557 | ||
558 | mpl_dbg("Mesh plink (peer, state, llid, plid, event): %s %d %d %d %d\n", | 558 | mpl_dbg("Mesh plink (peer, state, llid, plid, event): %s %d %d %d %d\n", |
559 | print_mac(mac, mgmt->sa), sta->plink_state, | 559 | print_mac(mac, mgmt->sa), sta->plink_state, |
560 | __le16_to_cpu(sta->llid), __le16_to_cpu(sta->plid), | 560 | le16_to_cpu(sta->llid), le16_to_cpu(sta->plid), |
561 | event); | 561 | event); |
562 | reason = 0; | 562 | reason = 0; |
563 | switch (sta->plink_state) { | 563 | switch (sta->plink_state) { |