Blob Blame History Raw
From 939032fb84eb67a88a0baafbd33f27940e307fbc Mon Sep 17 00:00:00 2001
From: Anoop S <anoop.skumar1507@gmail.com>
Date: Sat, 18 Jul 2020 16:01:25 +0530
Subject: [PATCH] Staging: rtl8188eu: core: Fix coding style issue
Git-commit: 939032fb84eb67a88a0baafbd33f27940e307fbc
Patch-mainline: v5.9-rc1
References: jsc#SLE-13430

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 <anoop.skumar1507@gmail.com>
Link: https://lore.kernel.org/r/20200718103125.62528-1-anoop.skumar1507@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Takashi Iwai <tiwai@suse.de>

---
 drivers/staging/rtl8188eu/core/rtw_security.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 		}
 	}
-- 
2.16.4