1#ifndef _ASM_METAG_CPU_H 2#define _ASM_METAG_CPU_H 3 4#include <linux/percpu.h> 5 6struct cpuinfo_metag { 7 struct cpu cpu; 8#ifdef CONFIG_SMP 9 unsigned long loops_per_jiffy; 10#endif 11}; 12 13DECLARE_PER_CPU(struct cpuinfo_metag, cpu_data); 14#endif /* _ASM_METAG_CPU_H */ 15