x86: HPET: convert WARN_ON to WARN_ON_ONCE

It is possible to flood the console with call traces if the WARN_ON
condition is true because of the frequency with which this function is
called.

Signed-off-by: Matt Fleming <mjf@gentoo.org>
Cc: mingo@elte.hu
Cc: venkatesh.pallipadi@intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Matt Fleming and committed by
Thomas Gleixner
1de5b085 f7160c75

+1 -1
+1 -1
arch/x86/kernel/hpet.c
··· 322 322 * what we wrote hit the chip before we compare it to the 323 323 * counter. 324 324 */ 325 - WARN_ON((u32)hpet_readl(HPET_T0_CMP) != cnt); 325 + WARN_ON_ONCE((u32)hpet_readl(HPET_T0_CMP) != cnt); 326 326 327 327 return (s32)((u32)hpet_readl(HPET_COUNTER) - cnt) >= 0 ? -ETIME : 0; 328 328 }