Commit 69632480 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: decryptor() use int to store error codes

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d5789247
...@@ -476,8 +476,7 @@ struct recv_frame *decryptor(struct rtw_adapter *padapter, ...@@ -476,8 +476,7 @@ struct recv_frame *decryptor(struct rtw_adapter *padapter,
struct rx_pkt_attrib *prxattrib = &precv_frame->attrib; struct rx_pkt_attrib *prxattrib = &precv_frame->attrib;
struct security_priv *psecuritypriv = &padapter->securitypriv; struct security_priv *psecuritypriv = &padapter->securitypriv;
struct recv_frame *return_packet = precv_frame; struct recv_frame *return_packet = precv_frame;
u32 res = _SUCCESS; int res = _SUCCESS;
RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, RT_TRACE(_module_rtl871x_recv_c_, _drv_info_,
("prxstat->decrypted =%x prxattrib->encrypt = 0x%03x\n", ("prxstat->decrypted =%x prxattrib->encrypt = 0x%03x\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment