diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 14:01:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 14:01:39 -0400 |
commit | 14351760e314b8a9720804b11c6bd11d0c0b1258 (patch) | |
tree | a851a50f84ce3ffca14c7c11caffe2774c0baca8 /drivers/clocksource | |
parent | da6e88f4963385b1b649b043691d206fbb951913 (diff) |
Fix printk format warning in clocksource/acpi_pm.c
For real, this time. The earlier attempt just moved the warning around.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/acpi_pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/acpi_pm.c b/drivers/clocksource/acpi_pm.c index bcd7d0e429e8..5ca1d80de182 100644 --- a/drivers/clocksource/acpi_pm.c +++ b/drivers/clocksource/acpi_pm.c | |||
@@ -227,7 +227,7 @@ static int __init parse_pmtmr(char *arg) | |||
227 | if (strict_strtoul(arg, 16, &base)) | 227 | if (strict_strtoul(arg, 16, &base)) |
228 | return -EINVAL; | 228 | return -EINVAL; |
229 | 229 | ||
230 | printk(KERN_INFO "PMTMR IOPort override: 0x%04x -> 0x%04x\n", | 230 | printk(KERN_INFO "PMTMR IOPort override: 0x%04x -> 0x%04lx\n", |
231 | (unsigned int)pmtmr_ioport, base); | 231 | (unsigned int)pmtmr_ioport, base); |
232 | pmtmr_ioport = base; | 232 | pmtmr_ioport = base; |
233 | 233 | ||