mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 12:03:54 +02:00
staging: r8188eu: os_dep: Change the return type of function
Change the return type of rtw_init_default_value function from u8 to void. This function always return success. This is called from rtw_init_drv_sw where the return value from this function is assign to local variable but the local variable value is never checked. After change the return type to void remove the local variable ret8 in rtw_init_drv_sw function. Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com> Link: https://lore.kernel.org/r/YYgCHkVXFQ4r9dVp@Sauravs-MacBook-Air.local Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4b99dd7d21
commit
d79c386174
|
|
@ -399,7 +399,7 @@ void rtw_stop_drv_threads(struct adapter *padapter)
|
|||
wait_for_completion(&padapter->cmdpriv.stop_cmd_thread);
|
||||
}
|
||||
|
||||
static u8 rtw_init_default_value(struct adapter *padapter)
|
||||
static void rtw_init_default_value(struct adapter *padapter)
|
||||
{
|
||||
struct registry_priv *pregistrypriv = &padapter->registrypriv;
|
||||
struct xmit_priv *pxmitpriv = &padapter->xmitpriv;
|
||||
|
|
@ -444,7 +444,6 @@ static u8 rtw_init_default_value(struct adapter *padapter)
|
|||
padapter->bRxRSSIDisplay = 0;
|
||||
padapter->bNotifyChannelChange = 0;
|
||||
padapter->bShowGetP2PState = 1;
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 rtw_reset_drv_sw(struct adapter *padapter)
|
||||
|
|
@ -478,8 +477,6 @@ u8 rtw_reset_drv_sw(struct adapter *padapter)
|
|||
|
||||
u8 rtw_init_drv_sw(struct adapter *padapter)
|
||||
{
|
||||
u8 ret8 = _SUCCESS;
|
||||
|
||||
if ((rtw_init_cmd_priv(&padapter->cmdpriv)) == _FAIL)
|
||||
return _FAIL;
|
||||
|
||||
|
|
@ -519,14 +516,14 @@ u8 rtw_init_drv_sw(struct adapter *padapter)
|
|||
|
||||
rtw_init_pwrctrl_priv(padapter);
|
||||
|
||||
ret8 = rtw_init_default_value(padapter);
|
||||
rtw_init_default_value(padapter);
|
||||
|
||||
rtl8188e_init_dm_priv(padapter);
|
||||
rtl8188eu_InitSwLeds(padapter);
|
||||
|
||||
spin_lock_init(&padapter->br_ext_lock);
|
||||
|
||||
return ret8;
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
void rtw_cancel_all_timer(struct adapter *padapter)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user