diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2007-08-02 13:12:45 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:50:08 -0400 |
commit | a2235ed40210081e51bec4bb1be64e4b3511501e (patch) | |
tree | d32435aca2751a696813098716e46dd5aab70015 /drivers/net/wireless/libertas/debugfs.c | |
parent | 4f2fdaaf0e4209bff3b18dc14c915b61f5fa5cd2 (diff) |
[PATCH] libertas: remove bss_descriptior->networktsf
This value was parsed out, but then nowhere used ... except in
some debugfs output. I can't imagine anyone wanting to use this
value for anything real (as no other driver exports it), so
bye-bye.
Along this, made the columns of
/sys/kernel/debug/libertas_wireless/*/getscantable align again.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/debugfs.c')
-rw-r--r-- | drivers/net/wireless/libertas/debugfs.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/debugfs.c b/drivers/net/wireless/libertas/debugfs.c index 4b9533a66511..63e747ac49d0 100644 --- a/drivers/net/wireless/libertas/debugfs.c +++ b/drivers/net/wireless/libertas/debugfs.c | |||
@@ -66,7 +66,7 @@ static ssize_t libertas_getscantable(struct file *file, char __user *userbuf, | |||
66 | struct bss_descriptor * iter_bss; | 66 | struct bss_descriptor * iter_bss; |
67 | 67 | ||
68 | pos += snprintf(buf+pos, len-pos, | 68 | pos += snprintf(buf+pos, len-pos, |
69 | "# | ch | ss | bssid | cap | TSF | Qual | SSID \n"); | 69 | "# | ch | rssi | bssid | cap | Qual | SSID \n"); |
70 | 70 | ||
71 | mutex_lock(&priv->adapter->lock); | 71 | mutex_lock(&priv->adapter->lock); |
72 | list_for_each_entry (iter_bss, &priv->adapter->network_list, list) { | 72 | list_for_each_entry (iter_bss, &priv->adapter->network_list, list) { |
@@ -75,15 +75,14 @@ static ssize_t libertas_getscantable(struct file *file, char __user *userbuf, | |||
75 | u16 spectrum_mgmt = (iter_bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT); | 75 | u16 spectrum_mgmt = (iter_bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT); |
76 | 76 | ||
77 | pos += snprintf(buf+pos, len-pos, | 77 | pos += snprintf(buf+pos, len-pos, |
78 | "%02u| %03d | %03ld | " MAC_FMT " |", | 78 | "%02u| %03d | %04ld | " MAC_FMT " |", |
79 | numscansdone, iter_bss->channel, iter_bss->rssi, | 79 | numscansdone, iter_bss->channel, iter_bss->rssi, |
80 | MAC_ARG(iter_bss->bssid)); | 80 | MAC_ARG(iter_bss->bssid)); |
81 | pos += snprintf(buf+pos, len-pos, " %04x-", iter_bss->capability); | 81 | pos += snprintf(buf+pos, len-pos, " %04x-", iter_bss->capability); |
82 | pos += snprintf(buf+pos, len-pos, "%c%c%c |", | 82 | pos += snprintf(buf+pos, len-pos, "%c%c%c |", |
83 | ibss ? 'A' : 'I', privacy ? 'P' : ' ', | 83 | ibss ? 'A' : 'I', privacy ? 'P' : ' ', |
84 | spectrum_mgmt ? 'S' : ' '); | 84 | spectrum_mgmt ? 'S' : ' '); |
85 | pos += snprintf(buf+pos, len-pos, " %08llx |", iter_bss->networktsf); | 85 | pos += snprintf(buf+pos, len-pos, " %04d |", SCAN_RSSI(iter_bss->rssi)); |
86 | pos += snprintf(buf+pos, len-pos, " %d |", SCAN_RSSI(iter_bss->rssi)); | ||
87 | pos += snprintf(buf+pos, len-pos, " %s\n", | 86 | pos += snprintf(buf+pos, len-pos, " %s\n", |
88 | escape_essid(iter_bss->ssid, iter_bss->ssid_len)); | 87 | escape_essid(iter_bss->ssid, iter_bss->ssid_len)); |
89 | 88 | ||