All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__
       [not found] <59821324.87ecca0a.2ff91.285fSMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-08-02 18:02 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-08-02 18:02 UTC (permalink / raw)
  To: vergilzhang; +Cc: devel, linux-kernel

On Thu, Aug 03, 2017 at 01:59:56AM +0800, vergilzhang wrote:
> staging: rtl8192e: Fix coding style issue caught by checkpatch.pl related to function name in debug print
> 
> Signed-off-by: vergilzhang <zhang_shurong@foxmail.com>
> ---
>  drivers/staging/rtl8192e/dot11d.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

You didn't pay attention to the other issues my patch bot sent you about
this patch, why not?  I'll just wait for you to fix them all and drop
this one for now, sorry.

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] staging: rtl8192e: Change fixed function names with "%s:", __func__
       [not found] <20170821133235.GA10327@MarvinZhang.kernel@gmail.com>
@ 2017-08-23  1:32 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-08-23  1:32 UTC (permalink / raw)
  To: Shurong Zhang; +Cc: devel, linux-kernel

On Mon, Aug 21, 2017 at 09:32:35PM +0800, Shurong Zhang wrote:
> Replace hard-coded function names in strings with "%s", __func__ in the dot11d.c file. Issue found by checkpatch.pl.

Please always wrap your changelog text at 72 columns.

And why did you send this twice?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__
  2017-08-18 15:53 [PATCH] staging: rtl8192e: Change fixed function names with "%s: ",__func__ =?gb18030?B?1cXK98jZ?=
@ 2017-08-20 18:12 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-08-20 18:12 UTC (permalink / raw)
  To: 张树荣; +Cc: devel, linux-kernel

On Fri, Aug 18, 2017 at 11:53:41PM +0800, 张树荣 wrote:
> 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(-)

This patch doesn't apply at all, are you sure you generated it
correctly?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [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

* Re: [PATCH] staging: rtl8192e: Change fixed function names with "%s: ", __func__
       [not found] <5982807a.09b46b0a.6bc9e.bddbSMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-08-17 17:59 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-08-17 17:59 UTC (permalink / raw)
  To: vergilzhang; +Cc: devel, linux-kernel

On Thu, Aug 03, 2017 at 09:46:26AM +0800, vergilzhang wrote:
> Replace hard-coded function names in strings with "%s", __func__
>     in the dot11d.c file. Issue found by checkpatch.pl.
> 
> Signed-off-by: vergilzhang <zhang_shurong@foxmail.com>

Please use your "legal" name here, and in the From line.  Please fix up
and resend all of your submitted patches with that change.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

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 --
     [not found] <59821324.87ecca0a.2ff91.285fSMTPIN_ADDED_BROKEN@mx.google.com>
2017-08-02 18:02 ` [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 ` Greg Kroah-Hartman
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

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.