mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 20:46:48 +02:00
staging: rtl8188eu: use __func__ in recv_linux.c
Use __func__ instead of hardcoded function name. Reported by checkpatch. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5451e22618
commit
c3c4b8e55f
|
|
@ -75,7 +75,7 @@ int rtw_recv_indicatepkt(struct adapter *padapter,
|
|||
skb = precv_frame->pkt;
|
||||
if (!skb) {
|
||||
RT_TRACE(_module_recv_osdep_c_, _drv_err_,
|
||||
("rtw_recv_indicatepkt():skb == NULL something wrong!!!!\n"));
|
||||
("%s():skb == NULL something wrong!!!!\n", __func__));
|
||||
goto _recv_indicatepkt_drop;
|
||||
}
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ int rtw_recv_indicatepkt(struct adapter *padapter,
|
|||
rtw_free_recvframe(precv_frame, pfree_recv_queue);
|
||||
|
||||
RT_TRACE(_module_recv_osdep_c_, _drv_info_,
|
||||
("\n rtw_recv_indicatepkt :after netif_rx!!!!\n"));
|
||||
("\n %s :after netif_rx!!!!\n", __func__));
|
||||
|
||||
return _SUCCESS;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user