Commit 8915d989 authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: os_dep: ioctl_linux.c: Remove return variables



Remove return variables and in multiple functions and return the values
directly, as the functions all return 0 in all cases.
Issue found with Coccinelle.

Signed-off-by: default avatarNishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 85d237bd
Loading
Loading
Loading
Loading
+3 −9
Original line number Diff line number Diff line
@@ -2601,9 +2601,7 @@ static int rtw_p2p_set(struct net_device *dev,
                               union iwreq_data *wrqu, char *extra)
{

	int ret = 0;

	return ret;
	return 0;

}

@@ -2612,9 +2610,7 @@ static int rtw_p2p_get(struct net_device *dev,
                               union iwreq_data *wrqu, char *extra)
{

	int ret = 0;

	return ret;
	return 0;

}

@@ -2623,9 +2619,7 @@ static int rtw_p2p_get2(struct net_device *dev,
						union iwreq_data *wrqu, char *extra)
{

	int ret = 0;

	return ret;
	return 0;

}