[PATCH] linux-2.5.54_delay-cleanup_A1

john stultz (johnstul@us.ibm.com)
07 Jan 2003 20:48:38 -0800


Linus, all,

Here again is my delay-cleanup patch. As described earlier, this patch
tries to cleanup the delay code by moving the timer-specific
implementations into the timer_ops struct. Thus, rather then doing:

if(x86_delay_tsc)
__rdtsc_delay(loops);
else if(x86_delay_cyclone)
__cyclone_delay(loops);
else if(whatever....

we just simply do:

timer->delay(loops);

Please apply on top of linux-2.5.54_timer-none_A0.

thanks
-john

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/