mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 15:43:35 -04:00
staging: r8188eu: remove return value from on_action_public_default
The only caller of on_action_public_default does not check the return value. We can make it a void function. Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20221030173326.1588647-12-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a399a3b052
commit
8161a83358
@@ -3788,22 +3788,15 @@ static void on_action_public_vendor(struct recv_frame *precv_frame)
|
||||
on_action_public_p2p(precv_frame);
|
||||
}
|
||||
|
||||
static unsigned int on_action_public_default(struct recv_frame *precv_frame)
|
||||
static void on_action_public_default(struct recv_frame *precv_frame)
|
||||
{
|
||||
unsigned int ret = _FAIL;
|
||||
u8 *pframe = precv_frame->rx_data;
|
||||
u8 *frame_body = pframe + sizeof(struct ieee80211_hdr_3addr);
|
||||
u8 token;
|
||||
|
||||
token = frame_body[2];
|
||||
|
||||
if (rtw_action_public_decache(precv_frame, token) == _FAIL)
|
||||
goto exit;
|
||||
|
||||
ret = _SUCCESS;
|
||||
|
||||
exit:
|
||||
return ret;
|
||||
rtw_action_public_decache(precv_frame, token);
|
||||
}
|
||||
|
||||
static void on_action_public(struct adapter *padapter, struct recv_frame *precv_frame)
|
||||
|
||||
Reference in New Issue
Block a user