diff options
| author | Piergiorgio Beruto <piergiorgio.beruto@gmail.com> | 2011-01-04 14:32:15 +0100 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-14 01:32:18 -0600 | 
| commit | afabe4b94e35af74f3dfc13d833bf47d367c2051 (patch) | |
| tree | 4c025d8c8add066c69cc73153102a9b6bfe54dc7 | |
| parent | 70ea7f82ed166a96869abf11d6299cb55b49c200 (diff) | |
| download | olio-uboot-2014.01-afabe4b94e35af74f3dfc13d833bf47d367c2051.tar.xz olio-uboot-2014.01-afabe4b94e35af74f3dfc13d833bf47d367c2051.zip | |
powerpc/85xx: Fix wrong SVR value for MPC8567 and MPC8567E processors
Signed-off-by: Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | arch/powerpc/include/asm/processor.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h index 9cafe85f1..71fafa30d 100644 --- a/arch/powerpc/include/asm/processor.h +++ b/arch/powerpc/include/asm/processor.h @@ -1030,8 +1030,8 @@  #define SVR_8555	0x807100  #define SVR_8555_E	0x807900  #define SVR_8560	0x807000 -#define SVR_8567	0x807600 -#define SVR_8567_E	0x807E00 +#define SVR_8567	0x807501 +#define SVR_8567_E	0x807D01  #define SVR_8568	0x807500  #define SVR_8568_E	0x807D00  #define SVR_8569	0x808000 |