summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/iwctl.c
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.mage@gmail.com>2011-12-28 21:09:13 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-09 17:18:25 (GMT)
commit5d11b1737d52b6f9428c2daea72457cd477e0122 (patch)
treefd9cb48bfd67c23af02951e6a79604797bec3fee /drivers/staging/vt6656/iwctl.c
parent506215ba22fea4a9190b7e33413405bd4d4ab1e1 (diff)
downloadlinux-fsl-qoriq-5d11b1737d52b6f9428c2daea72457cd477e0122.tar.xz
staging: vt6656: Remove return statement of iwctl_giwmode
This function 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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/iwctl.c b/drivers/staging/vt6656/iwctl.c
index d6fd010..75b36d3 100644
--- a/drivers/staging/vt6656/iwctl.c
+++ b/drivers/staging/vt6656/iwctl.c
@@ -471,7 +471,7 @@ int iwctl_siwmode(struct net_device *dev,
* Wireless Handler : get operation mode
*/
-int iwctl_giwmode(struct net_device *dev,
+void iwctl_giwmode(struct net_device *dev,
struct iw_request_info *info,
__u32 *wmode,
char *extra)
@@ -498,8 +498,6 @@ int iwctl_giwmode(struct net_device *dev,
default:
*wmode = IW_MODE_ADHOC;
}
-
- return 0;
}