diff options
Diffstat (limited to 'board/dave')
-rw-r--r-- | board/dave/B2/flash.c | 3 | ||||
-rw-r--r-- | board/dave/B2/u-boot.lds | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/board/dave/B2/flash.c b/board/dave/B2/flash.c index 50aa6aaadc..ad67e865b3 100644 --- a/board/dave/B2/flash.c +++ b/board/dave/B2/flash.c @@ -45,9 +45,6 @@ unsigned long flash_init (void) #else unsigned long size_b0; int i; - uint pbcr; - unsigned long base_b0; - int size_val = 0; /* Init: no FLASHes known */ for (i=0; i<CFG_MAX_FLASH_BANKS; ++i) { diff --git a/board/dave/B2/u-boot.lds b/board/dave/B2/u-boot.lds index d3b6a7726f..f1bbd5dc1c 100644 --- a/board/dave/B2/u-boot.lds +++ b/board/dave/B2/u-boot.lds @@ -51,7 +51,7 @@ SECTIONS armboot_end_data = .; . = ALIGN(4); + __bss_start = .; .bss : { *(.bss) } - - armboot_end = .; + _end = .; } |