summaryrefslogtreecommitdiffstats
path: root/include/asm-i386/spinlock_types.h
diff options
context:
space:
mode:
authorThomas Gleixner2007-10-11 11:20:03 +0200
committerThomas Gleixner2007-10-11 11:20:03 +0200
commit96a388de5dc53a8b234b3fd41f3ae2cedc9ffd42 (patch)
treed947a467aa2da3140279617bc4b9b101640d7bf4 /include/asm-i386/spinlock_types.h
parentx86: sanitize pathes arch/x86/kernel/cpu/Makefile (diff)
downloadkernel-qcow2-linux-96a388de5dc53a8b234b3fd41f3ae2cedc9ffd42.tar.gz
kernel-qcow2-linux-96a388de5dc53a8b234b3fd41f3ae2cedc9ffd42.tar.xz
kernel-qcow2-linux-96a388de5dc53a8b234b3fd41f3ae2cedc9ffd42.zip
i386/x86_64: move headers to include/asm-x86
Move the headers to include/asm-x86 and fixup the header install make rules Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-i386/spinlock_types.h')
-rw-r--r--include/asm-i386/spinlock_types.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/asm-i386/spinlock_types.h b/include/asm-i386/spinlock_types.h
deleted file mode 100644
index 4da9345c1500..000000000000
--- a/include/asm-i386/spinlock_types.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef __ASM_SPINLOCK_TYPES_H
-#define __ASM_SPINLOCK_TYPES_H
-
-#ifndef __LINUX_SPINLOCK_TYPES_H
-# error "please don't include this file directly"
-#endif
-
-typedef struct {
- unsigned int slock;
-} raw_spinlock_t;
-
-#define __RAW_SPIN_LOCK_UNLOCKED { 1 }
-
-typedef struct {
- unsigned int lock;
-} raw_rwlock_t;
-
-#define __RAW_RW_LOCK_UNLOCKED { RW_LOCK_BIAS }
-
-#endif