1
0
Fork 0

staging: rtl8188eu: don't define OnAuth() in non-AP mode

If CONFIG_88EU_AP_MODE is undefined, OnAuth() is never referenced.

Fixes warning:
  drivers/staging/rtl8188eu/core/rtw_mlme_ext.c:2725:21: warning: ‘OnAuth’ defined but not used [-Wunused-function]

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Fixes: 68345dd7bc ("staging: rtl8188eu: rtw_mlme_ext.c: unexport message callbacks")
Cc: Greg Kroah-Hartman <gregkh@linux.com>
Cc: Larry Finger <Larry.Finger@lwfinger.net>
Cc: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Luca Ceresoli 2015-06-14 14:40:24 +02:00 committed by Greg Kroah-Hartman
parent 2b49e0fce2
commit f996bd10a0
1 changed files with 2 additions and 2 deletions

View File

@ -2722,10 +2722,10 @@ _END_ONBEACON_:
return _SUCCESS;
}
#ifdef CONFIG_88EU_AP_MODE
static unsigned int OnAuth(struct adapter *padapter,
struct recv_frame *precv_frame)
{
#ifdef CONFIG_88EU_AP_MODE
unsigned int auth_mode, ie_len;
u16 seq;
unsigned char *sa, *p;
@ -2888,9 +2888,9 @@ auth_fail:
issue_auth(padapter, pstat, (unsigned short)status);
#endif /* CONFIG_88EU_AP_MODE */
return _FAIL;
}
#endif /* CONFIG_88EU_AP_MODE */
static unsigned int OnAuthClient(struct adapter *padapter,
struct recv_frame *precv_frame)