[ARM] fix impd1.c build warning

CC      arch/arm/mach-integrator/impd1.o
arch/arm/mach-integrator/impd1.c: In function `impd1_probe':
arch/arm/mach-integrator/impd1.c:408: warning: too few arguments for format

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Russell King 2008-08-05 10:36:00 +01:00 committed by Russell King
parent b09c3e3f17
commit faa64c93ae
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ static int impd1_probe(struct lm_device *dev)
ret = amba_device_register(d, &dev->resource);
if (ret) {
dev_err(&d->dev, "unable to register device: %d\n");
dev_err(&d->dev, "unable to register device: %d\n", ret);
kfree(d);
}
}