Commit 5d11b173 authored by Marcos Paulo de Souza's avatar Marcos Paulo de Souza Committed by Greg Kroah-Hartman

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: default avatarMarcos Paulo de Souza <marcos.mage@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 506215ba
...@@ -471,7 +471,7 @@ int iwctl_siwmode(struct net_device *dev, ...@@ -471,7 +471,7 @@ int iwctl_siwmode(struct net_device *dev,
* Wireless Handler : get operation mode * Wireless Handler : get operation mode
*/ */
int iwctl_giwmode(struct net_device *dev, void iwctl_giwmode(struct net_device *dev,
struct iw_request_info *info, struct iw_request_info *info,
__u32 *wmode, __u32 *wmode,
char *extra) char *extra)
...@@ -498,8 +498,6 @@ int iwctl_giwmode(struct net_device *dev, ...@@ -498,8 +498,6 @@ int iwctl_giwmode(struct net_device *dev,
default: default:
*wmode = IW_MODE_ADHOC; *wmode = IW_MODE_ADHOC;
} }
return 0;
} }
......
...@@ -52,7 +52,7 @@ int iwctl_giwrange(struct net_device *dev, ...@@ -52,7 +52,7 @@ int iwctl_giwrange(struct net_device *dev,
char *extra); char *extra);
int iwctl_giwmode(struct net_device *dev, void iwctl_giwmode(struct net_device *dev,
struct iw_request_info *info, struct iw_request_info *info,
__u32 *wmode, __u32 *wmode,
char *extra); char *extra);
......
...@@ -1733,7 +1733,7 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) { ...@@ -1733,7 +1733,7 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) {
// Get mode of operation // Get mode of operation
case SIOCGIWMODE: case SIOCGIWMODE:
rc = iwctl_giwmode(dev, NULL, &(wrq->u.mode), NULL); iwctl_giwmode(dev, NULL, &(wrq->u.mode), NULL);
break; break;
// Set WEP keys and mode // Set WEP keys and mode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment