2008-07-27 15:00:59 -06:00
|
|
|
/* include/asm/bugs.h: Sparc probes for various bugs.
|
2005-04-16 16:20:36 -06:00
|
|
|
*
|
2007-11-16 03:57:01 -07:00
|
|
|
* Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net)
|
2005-04-16 16:20:36 -06:00
|
|
|
*/
|
|
|
|
|
2007-11-16 03:57:01 -07:00
|
|
|
#ifdef CONFIG_SPARC32
|
2005-04-16 16:20:36 -06:00
|
|
|
#include <asm/cpudata.h>
|
2007-11-16 03:57:01 -07:00
|
|
|
#endif
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
extern unsigned long loops_per_jiffy;
|
|
|
|
|
2007-11-16 03:57:01 -07:00
|
|
|
static void __init check_bugs(void)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2007-11-16 03:57:01 -07:00
|
|
|
#if defined(CONFIG_SPARC32) && !defined(CONFIG_SMP)
|
2005-04-16 16:20:36 -06:00
|
|
|
cpu_data(0).udelay_val = loops_per_jiffy;
|
|
|
|
#endif
|
|
|
|
}
|