staging: r8188eu: make ips_leave static

The ips_leave function is used only in rtw_pwrctrl.c. We can make this
function static.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150
Link: https://lore.kernel.org/r/20230206210124.150142-3-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Martin Kaiser 2023-02-06 22:01:23 +01:00 committed by Greg Kroah-Hartman
parent 815950ef52
commit 75c68a49cb
2 changed files with 1 additions and 2 deletions

View File

@ -39,7 +39,7 @@ static void ips_enter(struct adapter *padapter)
mutex_unlock(&pwrpriv->lock);
}
int ips_leave(struct adapter *padapter)
static int ips_leave(struct adapter *padapter)
{
struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv;
struct security_priv *psecuritypriv = &padapter->securitypriv;

View File

@ -99,7 +99,6 @@ void rtw_set_firmware_ps_mode(struct adapter *adapter, u8 mode);
void rtw_set_ps_mode(struct adapter *adapter, u8 ps_mode, u8 smart_ps,
u8 bcn_ant_mode);
void LeaveAllPowerSaveMode(struct adapter *adapter);
int ips_leave(struct adapter *padapter);
void rtw_ps_processor(struct adapter *padapter);