diff options
| author | Abdun Nihaal <[email protected]> | 2022-01-29 21:58:10 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2022-01-31 14:02:48 +0100 |
| commit | b63d0921ce50cc9037bbd747a03d68d8cf403dbf (patch) | |
| tree | 89f0ef979ff4bb24455f3364f3574bfa7346df63 | |
| parent | 6f4dabe2d17575be8e065660c2104250e8efe734 (diff) | |
staging: r8188eu: convert rtw_p2p_get_groupid to return void
rtw_p2p_get_groupid always returns 0 and it's return value is not used.
Convert it to return void.
Suggested-by: Greg Kroah-Hartman <[email protected]>
Signed-off-by: Abdun Nihaal <[email protected]>
Link: https://lore.kernel.org/r/be08b2d84a7fc836db5aa008d906dee1b282fa54.1643466748.git.abdun.nihaal@gmail.com
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/r8188eu/os_dep/ioctl_linux.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/staging/r8188eu/os_dep/ioctl_linux.c b/drivers/staging/r8188eu/os_dep/ioctl_linux.c index 9ee647de5ba7..4c47e9bb7fc3 100644 --- a/drivers/staging/r8188eu/os_dep/ioctl_linux.c +++ b/drivers/staging/r8188eu/os_dep/ioctl_linux.c @@ -2564,12 +2564,11 @@ static void rtw_p2p_get_peer_devaddr_by_invitation(struct net_device *dev, wrqu->data.length = strlen(extra); } -static int rtw_p2p_get_groupid(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) +static void rtw_p2p_get_groupid(struct net_device *dev, + struct iw_request_info *info, + union iwreq_data *wrqu, char *extra) { - int ret = 0; struct adapter *padapter = (struct adapter *)rtw_netdev_priv(dev); struct wifidirect_info *pwdinfo = &padapter->wdinfo; @@ -2579,7 +2578,6 @@ static int rtw_p2p_get_groupid(struct net_device *dev, pwdinfo->groupid_info.go_device_addr[4], pwdinfo->groupid_info.go_device_addr[5], pwdinfo->groupid_info.ssid); wrqu->data.length = strlen(extra); - return ret; } static int rtw_p2p_get_op_ch(struct net_device *dev, |