diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-02-25 18:27:48 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-06 23:30:47 +0300 |
commit | 693b1bbcc47b3fd436068f294147357f90cd1296 (patch) | |
tree | 912d9a5dc3232c91f4411fc2eb400f31ccd37b79 /net/mac80211/debugfs_sta.c | |
parent | 73651ee6396c499ccb59ebc84c9274db01ed026d (diff) | |
download | linux-693b1bbcc47b3fd436068f294147357f90cd1296.tar.xz |
mac80211: clean up sta_info and document locking
This patch cleans up the sta_info struct and documents how
each set of variables is locked. Notably, flags locking is
completely missing. It also adds kernel-doc for some (but
not all yet) members of the struct.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/debugfs_sta.c')
-rw-r--r-- | net/mac80211/debugfs_sta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/debugfs_sta.c b/net/mac80211/debugfs_sta.c index 73cfb4da464d..fc2c1a192ed2 100644 --- a/net/mac80211/debugfs_sta.c +++ b/net/mac80211/debugfs_sta.c @@ -67,7 +67,7 @@ STA_FILE(last_rssi, last_rssi, D); STA_FILE(last_signal, last_signal, D); STA_FILE(last_noise, last_noise, D); STA_FILE(channel_use, channel_use, D); -STA_FILE(wep_weak_iv_count, wep_weak_iv_count, D); +STA_FILE(wep_weak_iv_count, wep_weak_iv_count, LU); static ssize_t sta_flags_read(struct file *file, char __user *userbuf, size_t count, loff_t *ppos) |