diff options
author | wdenk <wdenk> | 2004-10-09 22:44:59 (GMT) |
---|---|---|
committer | wdenk <wdenk> | 2004-10-09 22:44:59 (GMT) |
commit | 30d56fae23bf830c9f9817a7f151b248a01ebe96 (patch) | |
tree | 331d303b7168827f469c141ee143a4a1e0be4658 /drivers | |
parent | 63cfcbb4e20b9091e20d397fd9fee480996424d4 (diff) | |
download | u-boot-fsl-qoriq-30d56fae23bf830c9f9817a7f151b248a01ebe96.tar.xz |
Patch by Sam Song, 21 August 2004:
- Fix a typo in README
- Align "(RO)" output for "flinfo" after "protect on"
- Add RESET support for RPXlite_DW board; adjust CPU:BUS frequency
ratio 1:1 when core frequency less than 50MHz
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cfi_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cfi_flash.c b/drivers/cfi_flash.c index cd22d60..fcf213c 100644 --- a/drivers/cfi_flash.c +++ b/drivers/cfi_flash.c @@ -462,7 +462,7 @@ void flash_print_info (flash_info_t * info) if ((i % 5) == 0) printf ("\n "); printf (" %08lX%s", - info->start[i], info->protect[i] ? " (RO)" : " "); + info->start[i], info->protect[i] ? " (RO) " : " "); #endif } putc ('\n'); |