diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-07-11 12:57:31 -0700 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-07-12 05:29:08 +0200 |
commit | 38032f72601deac7aab00691c79e83d09b204e2a (patch) | |
tree | 7ad421fd304e3ae013949680f0fed0df1dd7bf92 /drivers/clocksource | |
parent | 6b148507d3d042a3c11f4c3f6c0f649c6a89220d (diff) |
acpi_pm clccksource: fix printk format warning
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@oracle.com>
Cc: akpm <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/acpi_pm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clocksource/acpi_pm.c b/drivers/clocksource/acpi_pm.c index 3baee020afc..bcd7d0e429e 100644 --- a/drivers/clocksource/acpi_pm.c +++ b/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%04x\n", + (unsigned int)pmtmr_ioport, base); pmtmr_ioport = base; return 1; |