Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _ASM_M32R_BUGS_H
2#define _ASM_M32R_BUGS_H
3
4/* $Id$ */
5
6/*
7 * This is included by init/main.c to check for architecture-dependent bugs.
8 *
9 * Needs:
10 * void check_bugs(void);
11 */
12#include <asm/processor.h>
13
14static void __init check_bugs(void)
15{
16 extern unsigned long loops_per_jiffy;
17
18 current_cpu_data.loops_per_jiffy = loops_per_jiffy;
19}
20
21#endif /* _ASM_M32R_BUGS_H */