aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-ixp4xx
diff options
context:
space:
mode:
authorKenneth Tan <chong.yin.tan@intel.com>2005-10-18 07:51:35 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2005-10-18 07:51:35 +0100
commitad1b472bea1bbcd8dc7fd92f6952d8b2d8355edb (patch)
tree0f0946287700d9021ea26a3c57888ffc7e0df1cd /include/asm-arm/arch-ixp4xx
parent[ARM] 3019/1: fix wrong comments (diff)
downloadlinux-dev-ad1b472bea1bbcd8dc7fd92f6952d8b2d8355edb.tar.xz
linux-dev-ad1b472bea1bbcd8dc7fd92f6952d8b2d8355edb.zip
[ARM] 3020/1: Fixes typo error CONFIG_CPU_IXP465, which should be CONFIG_CPU_IXP46X
Patch from Kenneth Tan The cpu_is_ixp465 macro in include/asm-arm/arch-ixp4xx/hardware.h is always returning 0 because #ifdef CONFIG_CPU_IXP465 is always false. Signed-off-by: Kenneth Tan <chong.yin.tan@intel.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-ixp4xx')
-rw-r--r--include/asm-arm/arch-ixp4xx/hardware.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/arch-ixp4xx/hardware.h b/include/asm-arm/arch-ixp4xx/hardware.h
index 4ac964b9078a..55d85eea8c1a 100644
--- a/include/asm-arm/arch-ixp4xx/hardware.h
+++ b/include/asm-arm/arch-ixp4xx/hardware.h
@@ -27,7 +27,7 @@
#define pcibios_assign_all_busses() 1
-#if defined(CONFIG_CPU_IXP465) && !defined(__ASSEMBLY__)
+#if defined(CONFIG_CPU_IXP46X) && !defined(__ASSEMBLY__)
extern unsigned int processor_id;
#define cpu_is_ixp465() ((processor_id & 0xffffffc0) == 0x69054200)
#else