[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081118152555.60adae61@vsauder-lx.localdomain>
Date: Tue, 18 Nov 2008 15:25:55 -0500
From: Vernon Sauder <vernoninhand@...il.com>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org
Subject: Re: fix smc911x.c printf typo
David Miller wrote:
>
>Your email client corrupted this patch, breaking up lines and making
>other modifications which make the patch not usable.
>
>Please fix this up and resubmit your change, thanks!
Sorry about that. I didn't even see it. Here it is again. I also
attached it if that works better.
From: Vernon Sauder <VernonInHand@...il.com>
Fix printf format typo in smc911x driver.
I sent this to Dustin McIntire <dustin@...soria.com> but the email
server rejected it.
Signed-off-by: Vernon Sauder <VernonInHand@...il.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
View attachment "smc911x_typo.patch" of type "text/x-patch" (867 bytes)
Powered by blists - more mailing lists