smc911x: Fix printf format typo in smc911x driver.

Signed-off-by: Vernon Sauder <VernonInHand@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Vernon Sauder and committed by David S. Miller eafdcb43 a7f75c0c

+1 -1
+1 -1
drivers/net/smc911x.c
··· 1813 val = SMC_GET_BYTE_TEST(lp); 1814 DBG(SMC_DEBUG_MISC, "%s: endian probe returned 0x%04x\n", CARDNAME, val); 1815 if (val != 0x87654321) { 1816 - printk(KERN_ERR "Invalid chip endian 0x08%x\n",val); 1817 retval = -ENODEV; 1818 goto err_out; 1819 }
··· 1813 val = SMC_GET_BYTE_TEST(lp); 1814 DBG(SMC_DEBUG_MISC, "%s: endian probe returned 0x%04x\n", CARDNAME, val); 1815 if (val != 0x87654321) { 1816 + printk(KERN_ERR "Invalid chip endian 0x%08x\n",val); 1817 retval = -ENODEV; 1818 goto err_out; 1819 }