Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

smc911x: Fix printf format typo in smc911x driver.

parent a7f75c0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}