Commit eafdcb43 authored by Vernon Sauder's avatar Vernon Sauder Committed by David S. Miller

smc911x: Fix printf format typo in smc911x driver.

Signed-off-by: default avatarVernon Sauder <VernonInHand@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a7f75c0c
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment