mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-09 07:51:31 +00:00
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>
This commit is contained in:
parent
c91001f608
commit
ff00226e0b
1 changed files with 2 additions and 2 deletions
|
@ -409,7 +409,7 @@ int bootstage_stash(void *base, int size)
|
||||||
|
|
||||||
/* Update total data size */
|
/* Update total data size */
|
||||||
hdr->size = ptr - (char *)base;
|
hdr->size = ptr - (char *)base;
|
||||||
printf("Stashed %d records\n", hdr->count);
|
debug("Stashed %d records\n", hdr->count);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -479,7 +479,7 @@ int bootstage_unstash(void *base, int size)
|
||||||
|
|
||||||
/* Mark the records as read */
|
/* Mark the records as read */
|
||||||
data->rec_count += hdr->count;
|
data->rec_count += hdr->count;
|
||||||
printf("Unstashed %d records\n", hdr->count);
|
debug("Unstashed %d records\n", hdr->count);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue