diff options
author | Haiying Wang <Haiying.Wang@freescale.com> | 2008-10-29 11:05:55 -0400 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2008-10-29 11:12:53 -0500 |
commit | 4e190b03aaf2309bd2e025d1187a2ca880fedc95 (patch) | |
tree | 57afb19280a15c5918a66c36482686c2095e6615 /board/freescale/mpc8313erdb | |
parent | 695c130e4bf75b444720ddfd83aca88f41c046cf (diff) | |
download | u-boot-imx-4e190b03aaf2309bd2e025d1187a2ca880fedc95.zip u-boot-imx-4e190b03aaf2309bd2e025d1187a2ca880fedc95.tar.gz u-boot-imx-4e190b03aaf2309bd2e025d1187a2ca880fedc95.tar.bz2 |
Make Freescale local bus registers available for both 83xx and 85xx.
- Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
can be shared by both 83xx and 85xx
- Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
files which use lbus83xx_t.
- Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
85xx can share them.
Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'board/freescale/mpc8313erdb')
-rw-r--r-- | board/freescale/mpc8313erdb/sdram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mpc8313erdb/sdram.c b/board/freescale/mpc8313erdb/sdram.c index 99e8a43..cb13829 100644 --- a/board/freescale/mpc8313erdb/sdram.c +++ b/board/freescale/mpc8313erdb/sdram.c @@ -110,7 +110,7 @@ static long fixed_sdram(void) phys_size_t initdram(int board_type) { volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR; - volatile lbus83xx_t *lbc = &im->lbus; + volatile fsl_lbus_t *lbc = &im->lbus; u32 msize; if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im) |