aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/debugfs_netdev.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2008-03-27 23:25:27 -0700
committerJohn W. Linville <linville@tuxdriver.com>2008-04-01 17:13:17 -0400
commit0675abdbfbcb8e0253a970c0dfe8d23b112888f3 (patch)
tree509f32c9d1dcc9dd149ea89fad1678f3f398fa60 /net/mac80211/debugfs_netdev.c
parent3480a58a90cd505578b9979d878a5ad9c347d424 (diff)
downloadkernel_samsung_smdk4412-0675abdbfbcb8e0253a970c0dfe8d23b112888f3.zip
kernel_samsung_smdk4412-0675abdbfbcb8e0253a970c0dfe8d23b112888f3.tar.gz
kernel_samsung_smdk4412-0675abdbfbcb8e0253a970c0dfe8d23b112888f3.tar.bz2
net/mac80211/debugfs_netdev.c: use of bool triggers a gcc bug
This bool causes my gcc-4.1.0 alpha cross compiler to go into an infinite loop. Switching it to u8 works around that. Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Luis Carlos Cobo <luisca@cozybit.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/debugfs_netdev.c')
-rw-r--r--net/mac80211/debugfs_netdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/debugfs_netdev.c b/net/mac80211/debugfs_netdev.c
index 107b0fe..0e921ae 100644
--- a/net/mac80211/debugfs_netdev.c
+++ b/net/mac80211/debugfs_netdev.c
@@ -222,7 +222,7 @@ IEEE80211_IF_WFILE(dot11MeshConfirmTimeout,
IEEE80211_IF_WFILE(dot11MeshHoldingTimeout,
u.sta.mshcfg.dot11MeshHoldingTimeout, DEC, u16);
IEEE80211_IF_WFILE(dot11MeshTTL, u.sta.mshcfg.dot11MeshTTL, DEC, u8);
-IEEE80211_IF_WFILE(auto_open_plinks, u.sta.mshcfg.auto_open_plinks, DEC, bool);
+IEEE80211_IF_WFILE(auto_open_plinks, u.sta.mshcfg.auto_open_plinks, DEC, u8);
IEEE80211_IF_WFILE(dot11MeshMaxPeerLinks,
u.sta.mshcfg.dot11MeshMaxPeerLinks, DEC, u16);
IEEE80211_IF_WFILE(dot11MeshHWMPactivePathTimeout,