* [PATCH] fix smc911x.c printf typo
@ 2008-11-12 4:05 Vernon Sauder
0 siblings, 0 replies; only message in thread
From: Vernon Sauder @ 2008-11-12 4:05 UTC (permalink / raw)
To: netdev, Nicolas Pitre
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-11-12 4:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-12 4:05 [PATCH] fix smc911x.c printf typo Vernon Sauder
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.