Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 411462f6 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

x86: Fix printk format due to variable type change



clockevents.mult became u32. Fix the printk format.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 621a071f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -662,7 +662,7 @@ static int __init calibrate_APIC_clock(void)
	calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;

	apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
	apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
	apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
	apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
		    calibration_result);