From: Vernon Sauder <vernoninhand@gmail.com>
To: netdev@vger.kernel.org, Nicolas Pitre <nico@cam.org>
Subject: [PATCH] fix smc911x.c printf typo
Date: Tue, 11 Nov 2008 23:05:48 -0500 [thread overview]
Message-ID: <491A561C.5040105@gmail.com> (raw)
From: Vernon Sauder <VernonInHand@gmail.com>
Fix printf format typo in smc911x driver.
I sent this to Dustin McIntire <dustin@sensoria.com> but the email
server rejected it.
Signed-off-by: Vernon Sauder <VernonInHand@gmail.com>
---
Patch against 2.6.28-rc4 Linus git tree.
drivers/net/smc911x.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
index 5051554..b965fec 100644
--- a/drivers/net/smc911x.c
+++ b/drivers/net/smc911x.c
@@ -1813,7 +1813,7 @@ static int __init smc911x_probe(struct net_device
*dev)
val = SMC_GET_BYTE_TEST(lp);
DBG(SMC_DEBUG_MISC, "%s: endian probe returned 0x%04x\n", CARDNAME, val);
if (val != 0x87654321) {
- printk(KERN_ERR "Invalid chip endian 0x08%x\n",val);
+ printk(KERN_ERR "Invalid chip endian 0x%08x\n",val);
retval = -ENODEV;
goto err_out;
}
--
1.5.2.4
reply other threads:[~2008-11-12 4:07 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=491A561C.5040105@gmail.com \
--to=vernoninhand@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=nico@cam.org \
/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.