Linux Audio

Check our new training course

Loading...
v3.5.6
 
 1/* include/asm/bugs.h:  Sparc probes for various bugs.
 2 *
 3 * Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net)
 4 */
 5
 6#ifdef CONFIG_SPARC32
 7#include <asm/cpudata.h>
 8#endif
 9
10extern unsigned long loops_per_jiffy;
11
12static void __init check_bugs(void)
13{
14#if defined(CONFIG_SPARC32) && !defined(CONFIG_SMP)
15	cpu_data(0).udelay_val = loops_per_jiffy;
16#endif
17}
v5.9
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/* include/asm/bugs.h:  Sparc probes for various bugs.
 3 *
 4 * Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net)
 5 */
 6
 7#ifdef CONFIG_SPARC32
 8#include <asm/cpudata.h>
 9#endif
10
11extern unsigned long loops_per_jiffy;
12
13static void __init check_bugs(void)
14{
15#if defined(CONFIG_SPARC32) && !defined(CONFIG_SMP)
16	cpu_data(0).udelay_val = loops_per_jiffy;
17#endif
18}