diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2009-11-16 05:52:39 -0500 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2009-11-16 05:55:20 -0500 |
| commit | 411462f62a65eeae7f451c6eb7a38b9d8759c61a (patch) | |
| tree | 5304dda7471f636f5aaa2065c0ec7f9fe990e725 | |
| parent | 621a071f4323a5eb71ea4f289c3d8ce65a4758e4 (diff) | |
x86: Fix printk format due to variable type change
clockevents.mult became u32. Fix the printk format.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
| -rw-r--r-- | arch/x86/kernel/apic/apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 894aa97f0717..cf4ee5195c5e 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
| @@ -662,7 +662,7 @@ static int __init calibrate_APIC_clock(void) | |||
| 662 | calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS; | 662 | calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS; |
| 663 | 663 | ||
| 664 | apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta); | 664 | apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta); |
| 665 | apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult); | 665 | apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult); |
| 666 | apic_printk(APIC_VERBOSE, "..... calibration result: %u\n", | 666 | apic_printk(APIC_VERBOSE, "..... calibration result: %u\n", |
| 667 | calibration_result); | 667 | calibration_result); |
| 668 | 668 | ||
