From: Øyvind Harboe Date: Wed, 28 Apr 2010 06:01:28 +0000 (+0200) Subject: nor: remove bogus output about padding sections X-Git-Tag: v0.5.0-rc1~735 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=49b7905cae66ee9e011c71aff758fafba823f87f;p=openocd nor: remove bogus output about padding sections padding of 0 bytes is actually no padding, do not output warning about padding in that case. Signed-off-by: Øyvind Harboe --- diff --git a/src/flash/nor/core.c b/src/flash/nor/core.c index 15e460a1..b8dda96b 100644 --- a/src/flash/nor/core.c +++ b/src/flash/nor/core.c @@ -611,7 +611,8 @@ int flash_write_unlock(struct target *target, struct image *image, run_size += image->sections[++section_last].size; run_size += pad_bytes; - LOG_INFO("Padding image section %d with %d bytes", section_last-1, pad_bytes); + if (pad_bytes > 0) + LOG_INFO("Padding image section %d with %d bytes", section_last-1, pad_bytes); } /* fit the run into bank constraints */