diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2008-03-01 01:30:32 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-07 00:40:50 +0300 |
commit | aa2b5928433ce6ba98cf31ab048c7882aeae56a3 (patch) | |
tree | a1dcf816d554a94491e5326e6e86947a7ee97c2c /net/mac80211/mesh_plink.c | |
parent | 4f5d4c4da89c7aa0fa194a7fd3e52233067932ea (diff) | |
download | linux-aa2b5928433ce6ba98cf31ab048c7882aeae56a3.tar.xz |
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, mpl_dbg("Mesh plink (peer, state, llid, plid, event): %s %d %d %d %d\n", print_mac(mac, mgmt->sa), sta->plink_state, - __le16_to_cpu(sta->llid), __le16_to_cpu(sta->plid), + le16_to_cpu(sta->llid), le16_to_cpu(sta->plid), event); reason = 0; switch (sta->plink_state) { |