diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-04-08 10:45:50 -0500 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-04-11 17:32:51 -0500 |
commit | f3e04bdc3f360c66801a9048956e61e41a16edba (patch) | |
tree | 43b265689bcd9451bf2d4935ed61df76660fc466 /cpu/mpc85xx/spd_sdram.c | |
parent | 950a392464e616b4590bc4501be46e2d7d162dea (diff) | |
download | u-boot-imx-f3e04bdc3f360c66801a9048956e61e41a16edba.zip u-boot-imx-f3e04bdc3f360c66801a9048956e61e41a16edba.tar.gz u-boot-imx-f3e04bdc3f360c66801a9048956e61e41a16edba.tar.bz2 |
85xx: Use SVR_SOC_VER instead of SVR_VER
The recent change introduced by 'Update SVR numbers to expand support'
now requires that we use SVR_SOC_VER instead of SVR_VER if we want
to compare against a particular processor id.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/spd_sdram.c')
-rw-r--r-- | cpu/mpc85xx/spd_sdram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/spd_sdram.c b/cpu/mpc85xx/spd_sdram.c index abc63c4..435458a 100644 --- a/cpu/mpc85xx/spd_sdram.c +++ b/cpu/mpc85xx/spd_sdram.c @@ -306,7 +306,7 @@ spd_sdram(void) * Adjust DDR II IO voltage biasing. * Only 8548 rev 1 needs the fix */ - if ((SVR_VER(get_svr()) == SVR_8548_E) && + if ((SVR_SOC_VER(get_svr()) == SVR_8548_E) && (SVR_MJREV(get_svr()) == 1) && (spd.mem_type == SPD_MEMTYPE_DDR2)) { volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); |