[PATCH -next] acpi_pm clccksource: fix printk format warning

From: Randy Dunlap
Date: Fri Jul 11 2008 - 16:03:37 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
cc: tglx@xxxxxxxxxxxxx

Fix printk format warning in acpi_pm clocksource:

linux-next-20080711/drivers/clocksource/acpi_pm.c:231: warning: format '%04lx' expects type 'long unsigned int', but argument 2 has type 'u32'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
---
drivers/clocksource/acpi_pm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20080711.orig/drivers/clocksource/acpi_pm.c
+++ linux-next-20080711/drivers/clocksource/acpi_pm.c
@@ -227,8 +227,8 @@ static int __init parse_pmtmr(char *arg)
if (strict_strtoul(arg, 16, &base))
return -EINVAL;

- printk(KERN_INFO "PMTMR IOPort override: 0x%04lx -> 0x%04lx\n",
- pmtmr_ioport, base);
+ printk(KERN_INFO "PMTMR IOPort override: 0x%04x -> 0x%04lx\n",
+ (unsigned int)pmtmr_ioport, base);
pmtmr_ioport = base;

return 1;


---
~Randy
Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA
http://linuxplumbersconf.org/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/