diff options
author | Anoop S <[email protected]> | 2020-07-18 16:01:25 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2020-07-20 10:22:47 +0200 |
commit | 939032fb84eb67a88a0baafbd33f27940e307fbc (patch) | |
tree | 5206937d6043d118a6f84be484f1c6517c94f83d | |
parent | 263771dbc85bc6573b344c193351980c27fd2faa (diff) |
Staging: rtl8188eu: core: Fix coding style issue
This fixes the following checkpatch.pl warning
WARNING: Prefer using '"%s...", __func__' to using 'rtw_tkip_decrypt', this function's name, in a string.
Signed-off-by: Anoop S <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_security.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_security.c b/drivers/staging/rtl8188eu/core/rtw_security.c index 5511f16c8550..21f6652dd69f 100644 --- a/drivers/staging/rtl8188eu/core/rtw_security.c +++ b/drivers/staging/rtl8188eu/core/rtw_security.c @@ -718,7 +718,7 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, u8 *precvframe) res = _FAIL; } } else { - RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("rtw_tkip_decrypt: stainfo==NULL!!!\n")); + RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("%s: stainfo==NULL!!!\n",__func__)); res = _FAIL; } } |