diff options
author | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 |
commit | 42dfe7a1844cbad7114038aaf03828acb7a84414 (patch) | |
tree | d33893d34d2a97aa23257703733dbc9d86d48278 /board/dave | |
parent | 855a496fe9ba431772f1ff1aef21a5c001288bb0 (diff) | |
download | u-boot-midas-42dfe7a1844cbad7114038aaf03828acb7a84414.tar.gz u-boot-midas-42dfe7a1844cbad7114038aaf03828acb7a84414.tar.bz2 u-boot-midas-42dfe7a1844cbad7114038aaf03828acb7a84414.zip |
Code cleanup; make several boards compile & link.
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 = .; } |