diff options
| author | wdenk <wdenk> | 2003-10-29 23:18:55 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-10-29 23:18:55 +0000 | 
| commit | 5fa66df63afe2841ce27596996811469903373a7 (patch) | |
| tree | c57de575d2c6b4b1946caf9105ef44c20a3b074e /board/evb64260/flash.c | |
| parent | a0f2fe524c63b3be90e18c89fc62673b1cf8fc6b (diff) | |
| download | olio-uboot-2014.01-5fa66df63afe2841ce27596996811469903373a7.tar.xz olio-uboot-2014.01-5fa66df63afe2841ce27596996811469903373a7.zip | |
* Prepare for release
* Fix problems in memory test on some boards (which was not
  non-destructive as intended)
* Patch by Gary Jennejohn, 28 Oct 2003:
  Change fs/fat/fat.c to put I/O buffers in BSS instead on the stack
  to prevent stack overflow on ARM systems
Diffstat (limited to 'board/evb64260/flash.c')
| -rw-r--r-- | board/evb64260/flash.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/evb64260/flash.c b/board/evb64260/flash.c index bc52c1278..7ca6f0ae7 100644 --- a/board/evb64260/flash.c +++ b/board/evb64260/flash.c @@ -97,7 +97,7 @@ flash_init (void)  #ifndef CONFIG_P3G4  	    printf("[");  	    print_size (size, ""); -	    printf("@%08lX] ", size>>20, base); +	    printf("@%08lX] ", base);  #endif  	    if (flash_info[i].flash_id == FLASH_UNKNOWN) { |