hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/arch/parisc/include/asm/spinlock_types.h
....@@ -3,13 +3,8 @@
33 #define __ASM_SPINLOCK_TYPES_H
44
55 typedef struct {
6
-#ifdef CONFIG_PA20
7
- volatile unsigned int slock;
8
-# define __ARCH_SPIN_LOCK_UNLOCKED { 1 }
9
-#else
106 volatile unsigned int lock[4];
117 # define __ARCH_SPIN_LOCK_UNLOCKED { { 1, 1, 1, 1 } }
12
-#endif
138 } arch_spinlock_t;
149
1510