diff options
| author | stroese <stroese> | 2003-12-09 14:58:22 +0000 |
|---|---|---|
| committer | stroese <stroese> | 2003-12-09 14:58:22 +0000 |
| commit | abcac8725f77881aa7076b892741b1675df1a65a (patch) | |
| tree | 9e17da4556bac025990ab1e52f6f980a2d96522b /common | |
| parent | 38a951956b90c7f25abf893d8a21528379e3d8b6 (diff) | |
| download | olio-uboot-2014.01-abcac8725f77881aa7076b892741b1675df1a65a.tar.xz olio-uboot-2014.01-abcac8725f77881aa7076b892741b1675df1a65a.zip | |
Fix output for "Unprotecting".
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_flash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/cmd_flash.c b/common/cmd_flash.c index a51b5e998..253f9efbc 100644 --- a/common/cmd_flash.c +++ b/common/cmd_flash.c @@ -463,7 +463,8 @@ int flash_sect_protect (int p, ulong addr_first, ulong addr_last) } if (s_first[bank]>=0 && s_first[bank]<=s_last[bank]) { - debug ("Protecting sectors %d..%d in bank %ld\n", + debug ("%sProtecting sectors %d..%d in bank %ld\n", + p ? "" : "Un-", s_first[bank], s_last[bank], bank+1); protected += s_last[bank] - s_first[bank] + 1; for (i=s_first[bank]; i<=s_last[bank]; ++i) { |