All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8192e: Change fixed function names with "%s: ",__func__
@ 2017-08-18 15:53 =?gb18030?B?1cXK98jZ?=
  2017-08-20 18:12 ` [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__ Greg Kroah-Hartman
  0 siblings, 1 reply; 5+ messages in thread
From: =?gb18030?B?1cXK98jZ?= @ 2017-08-18 15:53 UTC (permalink / raw)
  To: =?gb18030?B?R3JlZyBLcm9haC1IYXJ0bWFu?=
  Cc: =?gb18030?B?ZGV2ZWw=?=, =?gb18030?B?bGludXgta2VybmVs?=

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="gb18030", Size: 1211 bytes --]

From: Shurong Zhang <zhang_shurong@foxmail.com>

Replace hard-coded function names in strings with "%s", __func__
    in the dot11d.c file. Issue found by checkpatch.pl.

Signed-off-by: Shurong Zhang <zhang_shurong@foxmail.com>
---
 drivers/staging/rtl8192e/dot11d.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8192e/dot11d.c b/drivers/staging/rtl8192e/dot11d.c
index 017fe04..be78db1 100644
--- a/drivers/staging/rtl8192e/dot11d.c
+++ b/drivers/staging/rtl8192e/dot11d.c
@@ -128,12 +128,12 @@ void Dot11d_UpdateCountryIe(struct rtllib_device *dev, u8 *pTaddr,
 	pTriple = (struct chnl_txpow_triple *)(pCoutryIe + 3);
 	for (i = 0; i < NumTriples; i++) {
 	if (MaxChnlNum >= pTriple->FirstChnl) {
-	netdev_info(dev->dev, "Dot11d_UpdateCountryIe(): Invalid country IE, skip it........1\n");
+	netdev_info(dev->dev, "%s(): Invalid country IE, skip it........1\n",__func__);
 	return;
 	}
 	if (MAX_CHANNEL_NUMBER < (pTriple->FirstChnl +
 	    pTriple->NumChnls)) {
-	netdev_info(dev->dev, "Dot11d_UpdateCountryIe(): Invalid country IE, skip it........2\n");
+	netdev_info(dev->dev, "%s(): Invalid country IE, skip it........2\n",__func__);
 	return;
 	}
 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread
[parent not found: <20170821133235.GA10327@MarvinZhang.kernel@gmail.com>]
[parent not found: <5982807a.09b46b0a.6bc9e.bddbSMTPIN_ADDED_BROKEN@mx.google.com>]
[parent not found: <59821324.87ecca0a.2ff91.285fSMTPIN_ADDED_BROKEN@mx.google.com>]

end of thread, other threads:[~2017-08-23  1:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-18 15:53 [PATCH] staging: rtl8192e: Change fixed function names with "%s: ",__func__ =?gb18030?B?1cXK98jZ?=
2017-08-20 18:12 ` [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__ Greg Kroah-Hartman
     [not found] <20170821133235.GA10327@MarvinZhang.kernel@gmail.com>
2017-08-23  1:32 ` [PATCH] staging: rtl8192e: Change fixed function names with "%s:", __func__ Greg Kroah-Hartman
     [not found] <5982807a.09b46b0a.6bc9e.bddbSMTPIN_ADDED_BROKEN@mx.google.com>
2017-08-17 17:59 ` [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__ Greg Kroah-Hartman
     [not found] <59821324.87ecca0a.2ff91.285fSMTPIN_ADDED_BROKEN@mx.google.com>
2017-08-02 18:02 ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.