diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2007-01-15 12:48:05 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-01-15 12:48:05 +0100 |
commit | 9c3b365a88045c530b6b8b0f2e39b0437dc39b18 (patch) | |
tree | 1b05445584f32946c97170493072bd0ee67d5f7f | |
parent | b8a8bfc0c6390e12ffb324405ae9179ef460cb5c (diff) | |
parent | 5a5c56986a9ccf71642c8b6374eb18487b15fecd (diff) | |
download | u-boot-imx-9c3b365a88045c530b6b8b0f2e39b0437dc39b18.zip u-boot-imx-9c3b365a88045c530b6b8b0f2e39b0437dc39b18.tar.gz u-boot-imx-9c3b365a88045c530b6b8b0f2e39b0437dc39b18.tar.bz2 |
Merge with /home/sr/git/u-boot/denx-merge-sr
-rw-r--r-- | cpu/ppc4xx/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 53da5a3..57a7e8d 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -439,7 +439,7 @@ int ppc440spe_revB() { unsigned int pvr; pvr = get_pvr(); - if (pvr == PVR_440SPe_RB) + if ((pvr == PVR_440SPe_6_RB) || (pvr == PVR_440SPe_RB)) return 1; else return 0; |