diff options
author | Wolfgang Denk <wd@denx.de> | 2007-12-27 00:35:03 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-12-27 00:35:03 +0100 |
commit | 3f523edb146c3dfbc52e7631b37e6f326e0e980d (patch) | |
tree | 8889ebbfef58c0fcddb8c0d168482df93e2f8af9 /board/tqm85xx/sdram.c | |
parent | bd878eb024bf9cb351c9ce66db63558de2d0e395 (diff) | |
parent | 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d (diff) |
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx
Diffstat (limited to 'board/tqm85xx/sdram.c')
-rw-r--r-- | board/tqm85xx/sdram.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/board/tqm85xx/sdram.c b/board/tqm85xx/sdram.c index 9c1f087687..2053adefb4 100644 --- a/board/tqm85xx/sdram.c +++ b/board/tqm85xx/sdram.c @@ -57,8 +57,7 @@ int cas_latency(void); long int sdram_setup(int casl) { int i; - volatile immap_t *immap = (immap_t *) CFG_IMMR; - volatile ccsr_ddr_t *ddr = &immap->im_ddr; + volatile ccsr_ddr_t *ddr = (void *)(CFG_MPC85xx_DDR_ADDR); unsigned long cfg_ddr_timing1; unsigned long cfg_ddr_mode; @@ -150,8 +149,7 @@ long int initdram (int board_type) * This DLL-Override only used on TQM8540 and TQM8560 */ { - volatile immap_t *immap = (immap_t *) CFG_IMMR; - volatile ccsr_gur_t *gur= &immap->im_gur; + volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); int i,x; x = 10; |