summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/iwctl.c
diff options
context:
space:
mode:
authorMarcos Paulo de Souza2011-12-28 22:10:50 +0100
committerGreg Kroah-Hartman2012-02-09 18:18:26 +0100
commitf9b9f93426139e7525306b94df8f82989c3f6138 (patch)
tree6cb120551553819622598e0a5425d016090bcf46 /drivers/staging/vt6656/iwctl.c
parentstaging: vt6656: Remove return statement of iwctl_giwmode (diff)
downloadkernel-qcow2-linux-f9b9f93426139e7525306b94df8f82989c3f6138.tar.gz
kernel-qcow2-linux-f9b9f93426139e7525306b94df8f82989c3f6138.tar.xz
kernel-qcow2-linux-f9b9f93426139e7525306b94df8f82989c3f6138.zip
staging: vt6656: Remove return statement of iwctl_giwrange
The function iwctl_giwrange will always return 0, and this data is not used by who calls this function. Signed-off-by: Marcos Paulo de Souza <marcos.mage@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/iwctl.c')
-rw-r--r--drivers/staging/vt6656/iwctl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/vt6656/iwctl.c b/drivers/staging/vt6656/iwctl.c
index 75b36d3bf1ae..0e27fb1d9640 100644
--- a/drivers/staging/vt6656/iwctl.c
+++ b/drivers/staging/vt6656/iwctl.c
@@ -505,7 +505,7 @@ void iwctl_giwmode(struct net_device *dev,
* Wireless Handler : get capability range
*/
-int iwctl_giwrange(struct net_device *dev,
+void iwctl_giwrange(struct net_device *dev,
struct iw_request_info *info,
struct iw_point *wrq,
char *extra)
@@ -600,9 +600,6 @@ int iwctl_giwrange(struct net_device *dev,
range->avg_qual.level = 176; // -80 dBm
range->avg_qual.noise = 0;
}
-
-
- return 0;
}