at v3.2 21 lines 391 B view raw
1/* 2 * Copyright 2007-2009 Analog Devices Inc. 3 * Philippe Gerum <rpm@xenomai.org> 4 * 5 * Licensed under the GPL-2 or later. 6 */ 7 8#ifndef __ASM_BLACKFIN_CPU_H 9#define __ASM_BLACKFIN_CPU_H 10 11#include <linux/percpu.h> 12 13struct blackfin_cpudata { 14 struct cpu cpu; 15 unsigned int imemctl; 16 unsigned int dmemctl; 17}; 18 19DECLARE_PER_CPU(struct blackfin_cpudata, cpu_data); 20 21#endif