--- 25-akpm/arch/i386/kernel/timers/timer_pm.c | 5 ----- 1 files changed, 5 deletions(-) diff -puN arch/i386/kernel/timers/timer_pm.c~acpi-pm-timer-kill-printks arch/i386/kernel/timers/timer_pm.c --- 25/arch/i386/kernel/timers/timer_pm.c~acpi-pm-timer-kill-printks Wed Jan 28 16:28:14 2004 +++ 25-akpm/arch/i386/kernel/timers/timer_pm.c Wed Jan 28 16:28:14 2004 @@ -46,15 +46,10 @@ static inline u32 read_pmtmr(void) * source is not latched, so you must read it multiple * times to insure a safe value is read. */ - int dbg_failed = 0; do { - if(dbg_failed) - printk("bad pmtmr read: (%u, %u, %u)\n", - v1,v2,v3); v1 = inl(pmtmr_ioport); v2 = inl(pmtmr_ioport); v3 = inl(pmtmr_ioport); - dbg_failed = 1; } while ((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)); _