diff options
| author | Sujith Manoharan <[email protected]> | 2012-03-14 14:40:38 +0530 | 
|---|---|---|
| committer | John W. Linville <[email protected]> | 2012-03-15 13:40:27 -0400 | 
| commit | bcf6f96e192d71864685ba7253c94c2002615875 (patch) | |
| tree | 244e5ece52288b2cfbedd8088ed4b294bb4e3a4b /drivers/net/wireless/ath/ath9k/debug.c | |
| parent | 62450b88032287db805ba54de142e58052a98090 (diff) | |
ath9k: Remove 'other' VIF count
It is not needed and will not be used anyway since
unsupported interfaces are not allowed to be created.
Signed-off-by: Sujith Manoharan <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/debug.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/debug.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/net/wireless/ath/ath9k/debug.c b/drivers/net/wireless/ath/ath9k/debug.c index c2edf688da49..35d1c8e91d1c 100644 --- a/drivers/net/wireless/ath/ath9k/debug.c +++ b/drivers/net/wireless/ath/ath9k/debug.c @@ -738,9 +738,9 @@ static ssize_t read_file_misc(struct file *file, char __user *user_buf,  	len += snprintf(buf + len, sizeof(buf) - len,  			"VIF-COUNTS: AP: %i STA: %i MESH: %i WDS: %i" -			" ADHOC: %i OTHER: %i TOTAL: %hi BEACON-VIF: %hi\n", +			" ADHOC: %i TOTAL: %hi BEACON-VIF: %hi\n",  			iter_data.naps, iter_data.nstations, iter_data.nmeshes, -			iter_data.nwds, iter_data.nadhocs, iter_data.nothers, +			iter_data.nwds, iter_data.nadhocs,  			sc->nvifs, sc->nbcnvifs);  	if (len > sizeof(buf)) |