kernel/arch/parisc/include/asm/spinlock_types.h
.. .. @@ -3,13 +3,8 @@ 3 3 #define __ASM_SPINLOCK_TYPES_H 4 4 5 5 typedef struct { 6 -#ifdef CONFIG_PA207 - volatile unsigned int slock;8 -# define __ARCH_SPIN_LOCK_UNLOCKED { 1 }9 -#else10 6 volatile unsigned int lock[4]; 11 7 # define __ARCH_SPIN_LOCK_UNLOCKED { { 1, 1, 1, 1 } } 12 -#endif13 8 } arch_spinlock_t; 14 9 15 10