9
0
Fork 0

smc911x: fix wrong printf

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2009-02-20 17:43:27 +01:00
parent 7e60a6ee8e
commit a77e2a830b
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ static int smc911x_probe(struct device_d *dev)
val = readl(dev->map_base + BYTE_TEST);
if(val != 0x87654321) {
printf(DRIVERNAME
": no smc911x found on 0x%08x (byte_test=0x08%x)\n",
": no smc911x found on 0x%08x (byte_test=0x%08x)\n",
dev->map_base, val);
return -ENODEV;
}