diff options
author | Marcos Paulo de Souza <marcos.mage@gmail.com> | 2011-12-28 21:09:13 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-09 09:18:25 -0800 |
commit | 5d11b1737d52b6f9428c2daea72457cd477e0122 (patch) | |
tree | fd9cb48bfd67c23af02951e6a79604797bec3fee /drivers/staging/vt6656/iwctl.h | |
parent | 506215ba22fea4a9190b7e33413405bd4d4ab1e1 (diff) |
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.h')
-rw-r--r-- | drivers/staging/vt6656/iwctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/iwctl.h b/drivers/staging/vt6656/iwctl.h index 10a240e65012..60180a75f30d 100644 --- a/drivers/staging/vt6656/iwctl.h +++ b/drivers/staging/vt6656/iwctl.h @@ -52,7 +52,7 @@ int iwctl_giwrange(struct net_device *dev, char *extra); -int iwctl_giwmode(struct net_device *dev, +void iwctl_giwmode(struct net_device *dev, struct iw_request_info *info, __u32 *wmode, char *extra); |