fed up with those stupid warnings
[mmotm.git] / arch / blackfin / include / asm / cpu.h
blobb191dc662bd802076587e30a31cbca61beef7a7c
1 /*
2 * Copyright 2007-2009 Analog Devices Inc.
3 * Philippe Gerum <rpm@xenomai.org>
5 * Licensed under the GPL-2 or later.
6 */
8 #ifndef __ASM_BLACKFIN_CPU_H
9 #define __ASM_BLACKFIN_CPU_H
11 #include <linux/percpu.h>
13 struct task_struct;
15 struct blackfin_cpudata {
16 struct cpu cpu;
17 struct task_struct *idle;
18 unsigned int imemctl;
19 unsigned int dmemctl;
20 unsigned long dcache_invld_count;
21 unsigned long icache_invld_count;
24 DECLARE_PER_CPU(struct blackfin_cpudata, cpu_data);
26 #endif