mirror of https://gitee.com/openkylin/linux.git
Blackfin arch: fix bug - BF527 0.2 silicon has different CPUID (DSPID) 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>
This commit is contained in:
parent
6ecb5b6dbc
commit
06af15e086
|
@ -110,7 +110,7 @@
|
|||
|
||||
#ifdef CONFIG_BF527
|
||||
#define CPU "BF527"
|
||||
#define CPUID 0x27e4
|
||||
#define CPUID 0x27e0
|
||||
#endif
|
||||
#ifdef CONFIG_BF526
|
||||
#define CPU "BF526"
|
||||
|
@ -118,7 +118,7 @@
|
|||
#endif
|
||||
#ifdef CONFIG_BF525
|
||||
#define CPU "BF525"
|
||||
#define CPUID 0x27e4
|
||||
#define CPUID 0x27e0
|
||||
#endif
|
||||
#ifdef CONFIG_BF524
|
||||
#define CPU "BF524"
|
||||
|
@ -126,7 +126,7 @@
|
|||
#endif
|
||||
#ifdef CONFIG_BF523
|
||||
#define CPU "BF523"
|
||||
#define CPUID 0x27e4
|
||||
#define CPUID 0x27e0
|
||||
#endif
|
||||
#ifdef CONFIG_BF522
|
||||
#define CPU "BF522"
|
||||
|
|
Loading…
Reference in New Issue