diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2015-06-12 01:20:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-13 03:22:05 +0300 |
commit | 935142236dbe2ade051dcc3c4d259dadd318b386 (patch) | |
tree | 33906cb27698fd0b548212e2b42e1e100d5d061a /drivers | |
parent | 782eddd748d9c4be3272b946085e3099266c3043 (diff) | |
download | linux-935142236dbe2ade051dcc3c4d259dadd318b386.tar.xz |
staging: rtl8188eu: issue_probersp(): remove unused parameter
The is_valid_p2p_probereq is never referenced in the function body.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Cc: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c index ea442559618e..109c0985fe16 100644 --- a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c +++ b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c @@ -459,8 +459,7 @@ _issue_bcn: dump_mgntframe(padapter, pmgntframe); } -static void issue_probersp(struct adapter *padapter, unsigned char *da, - u8 is_valid_p2p_probereq) +static void issue_probersp(struct adapter *padapter, unsigned char *da) { struct xmit_frame *pmgntframe; struct pkt_attrib *pattrib; @@ -2620,7 +2619,7 @@ _issue_probersp: if (check_fwstate(pmlmepriv, _FW_LINKED) && pmlmepriv->cur_network.join_res) - issue_probersp(padapter, get_sa(pframe), is_valid_p2p_probereq); + issue_probersp(padapter, get_sa(pframe)); } return _SUCCESS; } |