Skip to content

Commit

Permalink
Blackfin arch: fix bug - BF527 0.2 silicon has different CPUID (DSPID…
Browse files Browse the repository at this point in the history
…) value

BF523/5/7 == 27e0 (all revs)
BF522/4/6 == 27e4 (all revs)

Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Robin Getz authored and Bryan Wu committed Jan 7, 2009
1 parent 6ecb5b6 commit 06af15e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/blackfin/mach-bf527/include/mach/bf527.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,23 @@

#ifdef CONFIG_BF527
#define CPU "BF527"
#define CPUID 0x27e4
#define CPUID 0x27e0
#endif
#ifdef CONFIG_BF526
#define CPU "BF526"
#define CPUID 0x27e4
#endif
#ifdef CONFIG_BF525
#define CPU "BF525"
#define CPUID 0x27e4
#define CPUID 0x27e0
#endif
#ifdef CONFIG_BF524
#define CPU "BF524"
#define CPUID 0x27e4
#endif
#ifdef CONFIG_BF523
#define CPU "BF523"
#define CPUID 0x27e4
#define CPUID 0x27e0
#endif
#ifdef CONFIG_BF522
#define CPU "BF522"
Expand Down

0 comments on commit 06af15e

Please sign in to comment.