diff options
Diffstat (limited to 'common/flash.c')
-rw-r--r-- | common/flash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/flash.c b/common/flash.c index 4a28ac5d347..cde648d4b88 100644 --- a/common/flash.c +++ b/common/flash.c @@ -39,10 +39,10 @@ flash_protect(int flag, ulong from, ulong to, flash_info_t *info) s_end = info->sector_count - 1; /* index of last sector */ b_end = info->start[0] + info->size - 1; /* bank end address */ - debug ("flash_protect %s: from 0x%08lX to 0x%08lX\n", - (flag & FLAG_PROTECT_SET) ? "ON" : - (flag & FLAG_PROTECT_CLEAR) ? "OFF" : "???", - from, to); + debug("%s %s: from 0x%08lX to 0x%08lX\n", __func__, + (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. |