summaryrefslogtreecommitdiffstats
path: root/common/flash.c
diff options
context:
space:
mode:
authorEugene OBrien <eugene.obrien@advantechamt.com>2007-07-31 10:24:56 +0200
committerStefan Roese <sr@denx.de>2007-07-31 10:24:56 +0200
commitd2f68006627eda6cb6c7f364bddf621dbfd2fc68 (patch)
treeb2cdeab303ae39e899edd1788d7b9f392c82c59b /common/flash.c
parentea9f6bce383cc9fbcdee28b5836109b1a6dba574 (diff)
downloadblackbird-obmc-uboot-d2f68006627eda6cb6c7f364bddf621dbfd2fc68.tar.gz
blackbird-obmc-uboot-d2f68006627eda6cb6c7f364bddf621dbfd2fc68.zip
ppc4xx: Update AMCC Bamboo 440EP support
Changed storage type of cfg_simulate_spd_eeprom to const Changed storage type of gpio_tab to stack storage (Cannot access global data declarations in .bss until afer code relocation) Improved SDRAM tests to catch problems where data is not uniquely addressable (e.g. incorrectly programmed SDRAM row or columns) Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules Fixed AM29LV320DT (OpCode Flash) sector map Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/flash.c')
-rw-r--r--common/flash.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/flash.c b/common/flash.c
index a64bc98529..888ff9c67c 100644
--- a/common/flash.c
+++ b/common/flash.c
@@ -47,16 +47,16 @@ flash_protect (int flag, ulong from, ulong to, flash_info_t *info)
short s_end = info->sector_count - 1; /* index of last sector */
int i;
- debug ("flash_protect %s: from 0x%08lX to 0x%08lX\n",
- (flag & FLAG_PROTECT_SET) ? "ON" :
- (flag & FLAG_PROTECT_CLEAR) ? "OFF" : "???",
- from, to);
-
/* Do nothing if input data is bad. */
if (info->sector_count == 0 || info->size == 0 || to < from) {
return;
}
+ debug ("flash_protect %s: from 0x%08lX to 0x%08lX\n",
+ (flag & FLAG_PROTECT_SET) ? "ON" :
+ (flag & FLAG_PROTECT_CLEAR) ? "OFF" : "???",
+ from, to);
+
/* There is nothing to do if we have no data about the flash
* or the protect range and flash range don't overlap.
*/
OpenPOWER on IntegriCloud