diff options
author | Vladimir Barinov <vbarinov@ru.mvista.com> | 2007-04-11 16:32:46 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-04-21 20:52:01 +0100 |
commit | 53b2e01be55f3c140e2704cf8d5f99ddba0ff823 (patch) | |
tree | 5f7002388ce6e46d3038a935869c2c5d0ccbc60e /include/asm-arm/arch-ixp4xx/hardware.h | |
parent | 45fba0846f5a5a48ed3c394aa4f8ca93699e7655 (diff) | |
download | talos-op-linux-53b2e01be55f3c140e2704cf8d5f99ddba0ff823.tar.gz talos-op-linux-53b2e01be55f3c140e2704cf8d5f99ddba0ff823.zip |
[ARM] 4320/1: ixp4xx: cpu type detection stuff cleanup
Move IXP4XX cpu detection stuff in a separate include file and remove unused definition.
Signed-off-by: Vladimir Barinov <vbarinov@ru.mvista.com>
Signed-off-by: Ruslan Sushko <rsushko@ru.mvista.com>
Signed-off-by: Deepak Saxena <dsaxena@mvista.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-ixp4xx/hardware.h')
-rw-r--r-- | include/asm-arm/arch-ixp4xx/hardware.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/asm-arm/arch-ixp4xx/hardware.h b/include/asm-arm/arch-ixp4xx/hardware.h index 24bc5883fa56..a0acde3b8862 100644 --- a/include/asm-arm/arch-ixp4xx/hardware.h +++ b/include/asm-arm/arch-ixp4xx/hardware.h @@ -27,11 +27,8 @@ #define pcibios_assign_all_busses() 1 -#if defined(CONFIG_CPU_IXP46X) && !defined(__ASSEMBLY__) -extern unsigned int processor_id; -#define cpu_is_ixp465() ((processor_id & 0xffffffc0) == 0x69054200) -#else -#define cpu_is_ixp465() (0) +#ifndef __ASSEMBLER__ +#include <asm/arch/cpu.h> #endif /* Register locations and bits */ |