Skip to content

Commit

Permalink
[ARM] 3020/1: Fixes typo error CONFIG_CPU_IXP465, which should be CON…
Browse files Browse the repository at this point in the history
…FIG_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>
  • Loading branch information
Kenneth Tan authored and Russell King committed Oct 18, 2005
1 parent 9b15c6c commit ad1b472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-arm/arch-ixp4xx/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad1b472

Please sign in to comment.