diff options
author | wdenk <wdenk> | 2003-09-18 09:21:33 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-09-18 09:21:33 +0000 |
commit | 5f535fe170e2cd90ee65922cbad1a5428d85a9e6 (patch) | |
tree | d0b1d5af2252f461fd3533c90e5aa215d6ac5b1d /board | |
parent | b0639ca33214eedeb026ce45ad1871d477cdbfb8 (diff) |
* Patches by Anders Larsen, 17 Sep 2003:
- fix spelling errors
- set GD_FLG_DEVINIT flag only after device function pointers
are valid
- Allow CFG_ALT_MEMTEST on systems where address zero isn't
writeable
- enable 3.rd UART (ST-UART) on PXA(XScale) CPUs
- trigger watchdog while waiting in serial driver
Diffstat (limited to 'board')
-rw-r--r-- | board/at91rm9200dk/flash.c | 2 | ||||
-rw-r--r-- | board/cradle/flash.c | 2 | ||||
-rw-r--r-- | board/csb226/flash.c | 2 | ||||
-rw-r--r-- | board/dnp1110/flash.c | 2 | ||||
-rw-r--r-- | board/ep7312/flash.c | 2 | ||||
-rw-r--r-- | board/impa7/flash.c | 2 | ||||
-rw-r--r-- | board/innokom/flash.c | 2 | ||||
-rw-r--r-- | board/lart/flash.c | 2 | ||||
-rw-r--r-- | board/logodl/flash.c | 2 | ||||
-rw-r--r-- | board/lubbock/flash.c | 2 | ||||
-rw-r--r-- | board/ml2/flash.c | 2 | ||||
-rw-r--r-- | board/mpl/vcma9/flash.c | 2 | ||||
-rw-r--r-- | board/omap1510inn/flash.c | 2 | ||||
-rw-r--r-- | board/omap1610inn/flash.c | 2 | ||||
-rw-r--r-- | board/sc520_cdp/flash.c | 2 | ||||
-rw-r--r-- | board/sc520_cdp/flash_old.c | 2 | ||||
-rw-r--r-- | board/sc520_spunk/flash.c | 2 | ||||
-rw-r--r-- | board/shannon/flash.c | 2 | ||||
-rw-r--r-- | board/shannon/shannon.c | 2 | ||||
-rw-r--r-- | board/smdk2410/flash.c | 2 |
20 files changed, 20 insertions, 20 deletions
diff --git a/board/at91rm9200dk/flash.c b/board/at91rm9200dk/flash.c index ebbd6f4aec6..9a67755dc34 100644 --- a/board/at91rm9200dk/flash.c +++ b/board/at91rm9200dk/flash.c @@ -160,7 +160,7 @@ ulong flash_init (void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic ("configured to many flash banks!\n"); + panic ("configured too many flash banks!\n"); sector = 0; start_address = flashbase; diff --git a/board/cradle/flash.c b/board/cradle/flash.c index e2d174e524d..d867a11ce3a 100644 --- a/board/cradle/flash.c +++ b/board/cradle/flash.c @@ -59,7 +59,7 @@ ulong flash_init(void) flashbase = PHYS_FLASH_2; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); break; } for (j = 0; j < flash_info[i].sector_count; j++) diff --git a/board/csb226/flash.c b/board/csb226/flash.c index 9801773eb7e..6b0e51ac435 100644 --- a/board/csb226/flash.c +++ b/board/csb226/flash.c @@ -62,7 +62,7 @@ ulong flash_init(void) flashbase = PHYS_FLASH_1; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); break; } for (j = 0; j < flash_info[i].sector_count; j++) { diff --git a/board/dnp1110/flash.c b/board/dnp1110/flash.c index 4416393fec7..60874ba9b83 100644 --- a/board/dnp1110/flash.c +++ b/board/dnp1110/flash.c @@ -74,7 +74,7 @@ unsigned long flash_init (void) flash_get_offsets(PHYS_FLASH_1, &flash_info[i]); break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); break; } size += flash_info[i].size; diff --git a/board/ep7312/flash.c b/board/ep7312/flash.c index 1ee0a37a00d..c687cc7365d 100644 --- a/board/ep7312/flash.c +++ b/board/ep7312/flash.c @@ -50,7 +50,7 @@ ulong flash_init (void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic ("configured to many flash banks!\n"); + panic ("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { flash_info[i].start[j] = flashbase + j * MAIN_SECT_SIZE; } diff --git a/board/impa7/flash.c b/board/impa7/flash.c index da4d31eb1e2..3e380e5f498 100644 --- a/board/impa7/flash.c +++ b/board/impa7/flash.c @@ -53,7 +53,7 @@ ulong flash_init(void) else if (i == 1) flashbase = PHYS_FLASH_2; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { if (j <= 7) diff --git a/board/innokom/flash.c b/board/innokom/flash.c index 3caf43d21c3..29c91664842 100644 --- a/board/innokom/flash.c +++ b/board/innokom/flash.c @@ -276,7 +276,7 @@ ulong flash_init(void) flashbase = PHYS_FLASH_1; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); break; } for (j = 0; j < flash_info[i].sector_count; j++) { diff --git a/board/lart/flash.c b/board/lart/flash.c index ad6134be746..013c2fd10ff 100644 --- a/board/lart/flash.c +++ b/board/lart/flash.c @@ -86,7 +86,7 @@ ulong flash_init(void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { if (j <= 7) diff --git a/board/logodl/flash.c b/board/logodl/flash.c index cef0b4dee47..8c304f9392c 100644 --- a/board/logodl/flash.c +++ b/board/logodl/flash.c @@ -91,7 +91,7 @@ ulong flash_init(void) flashbase = PHYS_FLASH_2; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); break; } for (j = 0; j < flash_info[i].sector_count; j++) diff --git a/board/lubbock/flash.c b/board/lubbock/flash.c index 9e07b1140d4..ba82892dde5 100644 --- a/board/lubbock/flash.c +++ b/board/lubbock/flash.c @@ -76,7 +76,7 @@ unsigned long flash_init (void) flash_get_offsets (PHYS_FLASH_2, &flash_info[i]); break; default: - panic ("configured to many flash banks!\n"); + panic ("configured too many flash banks!\n"); break; } size += flash_info[i].size; diff --git a/board/ml2/flash.c b/board/ml2/flash.c index 090725df1dd..4f805a663b1 100644 --- a/board/ml2/flash.c +++ b/board/ml2/flash.c @@ -72,7 +72,7 @@ ulong flash_init(void) { if (i==0) flashbase = CFG_FLASH_BASE; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) flash_info[i].start[j]=flashbase + j * SECT_SIZE; diff --git a/board/mpl/vcma9/flash.c b/board/mpl/vcma9/flash.c index 91517c463f9..829396bfd0d 100644 --- a/board/mpl/vcma9/flash.c +++ b/board/mpl/vcma9/flash.c @@ -80,7 +80,7 @@ ulong flash_init(void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { if (j <= 3) diff --git a/board/omap1510inn/flash.c b/board/omap1510inn/flash.c index 6b2739d3ab9..9453987aa9d 100644 --- a/board/omap1510inn/flash.c +++ b/board/omap1510inn/flash.c @@ -72,7 +72,7 @@ unsigned long flash_init (void) flash_get_offsets (PHYS_FLASH_1, &flash_info[i]); break; default: - panic ("configured to many flash banks!\n"); + panic ("configured too many flash banks!\n"); break; } size += flash_info[i].size; diff --git a/board/omap1610inn/flash.c b/board/omap1610inn/flash.c index 59f5b68b38d..0108545d41e 100644 --- a/board/omap1610inn/flash.c +++ b/board/omap1610inn/flash.c @@ -96,7 +96,7 @@ unsigned long flash_init (void) flash_get_offsets (PHYS_FLASH_1, &flash_info[i]); break; default: - panic ("configured to many flash banks!\n"); + panic ("configured too many flash banks!\n"); break; } size += flash_info[i].size; diff --git a/board/sc520_cdp/flash.c b/board/sc520_cdp/flash.c index 2f7ce5254af..d52a847c73b 100644 --- a/board/sc520_cdp/flash.c +++ b/board/sc520_cdp/flash.c @@ -234,7 +234,7 @@ ulong flash_init(void) flashbase = SC520_FLASH_BANK2_BASE; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); } id = identify_flash(flashbase, 4); diff --git a/board/sc520_cdp/flash_old.c b/board/sc520_cdp/flash_old.c index 416b01d2a57..3c0f6d6a680 100644 --- a/board/sc520_cdp/flash_old.c +++ b/board/sc520_cdp/flash_old.c @@ -101,7 +101,7 @@ ulong flash_init(void) flashbase = SC520_FLASH_BANK0_BASE; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); } for (j = 0; j < flash_info[i].sector_count; j++) { diff --git a/board/sc520_spunk/flash.c b/board/sc520_spunk/flash.c index d97dc218655..4942e598d35 100644 --- a/board/sc520_spunk/flash.c +++ b/board/sc520_spunk/flash.c @@ -239,7 +239,7 @@ ulong flash_init(void) flashbase = SC520_FLASH_BANK0_BASE; break; default: - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); } id = identify_flash(flashbase, 2); diff --git a/board/shannon/flash.c b/board/shannon/flash.c index 74f5f6929bc..65ebc279c50 100644 --- a/board/shannon/flash.c +++ b/board/shannon/flash.c @@ -73,7 +73,7 @@ ulong flash_init(void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { diff --git a/board/shannon/shannon.c b/board/shannon/shannon.c index 1876e3ed312..c090bde4aab 100644 --- a/board/shannon/shannon.c +++ b/board/shannon/shannon.c @@ -60,7 +60,7 @@ int board_init (void) *(unsigned long *)temp = 0x00060006; } -#endif /* CONFIG_INIT_CRITICAL */ +#endif /* CONFIG_INFERNO */ /* arch number for shannon */ gd->bd->bi_arch_number = 97; diff --git a/board/smdk2410/flash.c b/board/smdk2410/flash.c index d7479f085f5..a37c6f8fb86 100644 --- a/board/smdk2410/flash.c +++ b/board/smdk2410/flash.c @@ -80,7 +80,7 @@ ulong flash_init(void) if (i == 0) flashbase = PHYS_FLASH_1; else - panic("configured to many flash banks!\n"); + panic("configured too many flash banks!\n"); for (j = 0; j < flash_info[i].sector_count; j++) { if (j <= 3) |