All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marianne Moeller Knudsen <marianne@masu.dk>
To: outreachy-kernel@googlegroups.com
Subject: [PATCH] staging: rtl8192e: Replace printk with netdev_info
Date: Mon, 23 Mar 2015 19:04:24 +0100	[thread overview]
Message-ID: <20150323180424.GA2636@debianvm> (raw)

Replace printk(KERN_INFO...) by netdev_info for more uniform error
reporting. Issue found by checkpatch.

Signed-off-by: Marianne Moeller Knudsen <marianne@masu.dk>
---
 drivers/staging/rtl8192e/rtl819x_TSProc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8192e/rtl819x_TSProc.c b/drivers/staging/rtl8192e/rtl819x_TSProc.c
index c51f7e0..949cba4 100644
--- a/drivers/staging/rtl8192e/rtl819x_TSProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_TSProc.c
@@ -479,7 +479,7 @@ void RemovePeerTS(struct rtllib_device *ieee, u8 *Addr)
 
 	list_for_each_entry_safe(pTS, pTmpTS, &ieee->Tx_TS_Admit_List, List) {
 		if (memcmp(pTS->Addr, Addr, 6) == 0) {
-			printk(KERN_INFO "====>remove Tx_TS_admin_list\n");
+			netdev_info(ieee->dev, "====>remove Tx_TS_admin_list\n");
 			RemoveTsEntry(ieee, pTS, TX_DIR);
 			list_del_init(&pTS->List);
 			list_add_tail(&pTS->List, &ieee->Tx_TS_Unused_List);
-- 
1.7.10.4



             reply	other threads:[~2015-03-23 18:04 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-23 18:04 Marianne Moeller Knudsen [this message]
2015-03-23 21:43 ` [Outreachy kernel] [PATCH] staging: rtl8192e: Replace printk with netdev_info Greg KH
2015-03-26  1:33   ` Marianne Moeller Knudsen
2015-03-26 13:27     ` Julia Lawall
2015-03-26  3:55       ` Marianne Moeller Knudsen
2015-03-26 19:10       ` Jes Sorensen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150323180424.GA2636@debianvm \
    --to=marianne@masu.dk \
    --cc=outreachy-kernel@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.