diff mbox

[U-Boot,02/10] rockchip: Drop a debug message when outputing SPI images

Message ID 1451391772-6203-3-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass Dec. 29, 2015, 12:22 p.m. UTC
There is an unnecessary sector count displayed. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/rkspi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Jan. 15, 2016, 1:35 a.m. UTC | #1
On 29 December 2015 at 05:22, Simon Glass <sjg@chromium.org> wrote:
> There is an unnecessary sector count displayed. Drop it.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
>  tools/rkspi.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/rkspi.c b/tools/rkspi.c
> index 800e235..a0b0051 100644
> --- a/tools/rkspi.c
> +++ b/tools/rkspi.c
> @@ -54,7 +54,7 @@ static void rkspi_set_header(void *buf, struct stat *sbuf, int ifd,
>          * boot ROM. Its rationale is unknown.
>          */
>         for (sector = size / RKSPI_SECT_LEN - 1; sector >= 0; sector--) {
> -               printf("sector %u\n", sector);
> +               debug("sector %u\n", sector);
>                 memmove(buf + sector * RKSPI_SECT_LEN * 2,
>                         buf + sector * RKSPI_SECT_LEN,
>                         RKSPI_SECT_LEN);
> --
> 2.6.0.rc2.230.g3dd15c0
>

Applied to u-boot-rockchip, and now in mainline.
diff mbox

Patch

diff --git a/tools/rkspi.c b/tools/rkspi.c
index 800e235..a0b0051 100644
--- a/tools/rkspi.c
+++ b/tools/rkspi.c
@@ -54,7 +54,7 @@  static void rkspi_set_header(void *buf, struct stat *sbuf, int ifd,
 	 * boot ROM. Its rationale is unknown.
 	 */
 	for (sector = size / RKSPI_SECT_LEN - 1; sector >= 0; sector--) {
-		printf("sector %u\n", sector);
+		debug("sector %u\n", sector);
 		memmove(buf + sector * RKSPI_SECT_LEN * 2,
 			buf + sector * RKSPI_SECT_LEN,
 			RKSPI_SECT_LEN);