summaryrefslogtreecommitdiff
path: root/common/bootstage.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-22 05:05:29 -0600
committerTom Rini <trini@konsulko.com>2017-06-05 14:13:06 -0400
commitff00226e0b55d08c55fca843ff9c4819b247e08c (patch)
treec028d234bcdd18b2a098fe71d33c60e104ad1058 /common/bootstage.c
parentc91001f608597a727261449b3c6fd3afe7d6551c (diff)
bootstage: Use debug() for stashing messages
We don't normally want to see these messages. Change them to debug-only. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/bootstage.c')
-rw-r--r--common/bootstage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bootstage.c b/common/bootstage.c
index 1afdee3018..32f4e8b706 100644
--- a/common/bootstage.c
+++ b/common/bootstage.c
@@ -409,7 +409,7 @@ int bootstage_stash(void *base, int size)
/* Update total data size */
hdr->size = ptr - (char *)base;
- printf("Stashed %d records\n", hdr->count);
+ debug("Stashed %d records\n", hdr->count);
return 0;
}
@@ -479,7 +479,7 @@ int bootstage_unstash(void *base, int size)
/* Mark the records as read */
data->rec_count += hdr->count;
- printf("Unstashed %d records\n", hdr->count);
+ debug("Unstashed %d records\n", hdr->count);
return 0;
}