https://github.com/torvalds/linux
Raw File
Tip revision: b7279469d66b55119784b8b9529c99c1955fe747 authored by Linus Torvalds on 05 July 2008, 22:53:22 UTC
Linux 2.6.26-rc9
Tip revision: b727946
bugs.h
#ifndef _ASM_M32R_BUGS_H
#define _ASM_M32R_BUGS_H

/*
 * This is included by init/main.c to check for architecture-dependent bugs.
 *
 * Needs:
 *     void check_bugs(void);
 */
#include <asm/processor.h>

static void __init check_bugs(void)
{
	extern unsigned long loops_per_jiffy;

	current_cpu_data.loops_per_jiffy = loops_per_jiffy;
}

#endif  /* _ASM_M32R_BUGS_H */
back to top