]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
powerpc/83xx: Fix build issue with ve8313 board due to lbus changes
authorKumar Gala <galak@kernel.crashing.org>
Thu, 19 Aug 2010 06:48:14 +0000 (01:48 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Thu, 19 Aug 2010 18:24:00 +0000 (13:24 -0500)
We get two build errors:

fsl_elbc_nand.c: In function 'fsl_elbc_run_command':
fsl_elbc_nand.c:231: error: 'fsl_lbc_t' has no member named 'lsor'
make[1]: *** [/work/wd/tmp-ppc/drivers/mtd/nand/fsl_elbc_nand.o] Error 1

and

ve8313.c: In function 'initdram':
ve8313.c:104: error: expected '=', ',', ';', 'asm' or '__attribute__'
before '*' token
ve8313.c:104: error: 'lbc' undeclared (first use in this function)
ve8313.c:104: error: (Each undeclared identifier is reported only once
ve8313.c:104: error: for each function it appears in.)
ve8313.c:104: error: 'immap_t' has no member named 'lbus'
make[1]: *** [ve8313.o] Error 1
make: *** [board/ve8313/libve8313.a] Error 2

Due to changes to unifiy local bus struct definitions.

Reported-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
board/ve8313/ve8313.c
include/configs/ve8313.h

index 8ba1b193a4b518ff9b72894a7cef5cf7122aa233..2272ff0c34cb50a59e9602a24b073d45410d29fd 100644 (file)
@@ -101,7 +101,7 @@ static long fixed_sdram(void)
 phys_size_t initdram(int board_type)
 {
        volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
-       volatile fsl_lbus_t *lbc = &im->lbus;
+       volatile fsl_lbc_t *lbc = &im->im_lbc;
        u32 msize;
 
        if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
index 1589913a5e6d9b2309ffda30b34e550bf8b98963..56d24f90140b3e6f7c988afdae52856b347653f4 100644 (file)
@@ -39,6 +39,7 @@
 #define CONFIG_VE8313          1
 
 #define CONFIG_PCI             1
+#define CONFIG_FSL_ELBC                1
 
 #define CONFIG_BOARD_EARLY_INIT_F      1