aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2007-05-14 22:56:32 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2007-05-16 15:35:26 +0100
commit06ba255571b0a2f1fb7e49e7406364e4194f4e10 (patch)
treed709864524613d73729bbf2fff5fbf0a1f6e41f7 /include/asm-arm
parent[ARM] 4378/1: KS8695: Serial driver fix (diff)
downloadlinux-dev-06ba255571b0a2f1fb7e49e7406364e4194f4e10.tar.xz
linux-dev-06ba255571b0a2f1fb7e49e7406364e4194f4e10.zip
[ARM] Remove Integrator/CP SMP platform support
The Integrator/CP SMP platform support was never fully merged, and now it's causing build breakage. Remove it. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm')
-rw-r--r--include/asm-arm/arch-integrator/smp.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/asm-arm/arch-integrator/smp.h b/include/asm-arm/arch-integrator/smp.h
deleted file mode 100644
index ab2c79bb9505..000000000000
--- a/include/asm-arm/arch-integrator/smp.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef ASMARM_ARCH_SMP_H
-#define ASMARM_ARCH_SMP_H
-
-
-#include <asm/hardware.h>
-#include <asm/io.h>
-
-#define hard_smp_processor_id() \
- ({ \
- unsigned int cpunum; \
- __asm__("mrc p15, 0, %0, c0, c0, 5" \
- : "=r" (cpunum)); \
- cpunum &= 0x0F; \
- })
-
-extern void secondary_scan_irqs(void);
-
-#endif