diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-11 09:47:11 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-10-17 21:17:12 -0600 |
commit | f337fb9ea8b8163e2b5cff7e2691a30d23841f3e (patch) | |
tree | 97a58c181980d8c84057c76bed358ce402a76abb /fs/ext4 | |
parent | 19511935df44f0fec01c6538176f1b6ea4dd63d3 (diff) | |
download | u-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.tar.gz u-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.tar.bz2 u-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.zip |
fs: Quieten down the filesystems more
When looking for a filesystem on a partition we should do so quietly. At
present if the filesystem is very small (e.g. 512 bytes) we get a host of
messages.
Update these to only show when debugging.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/ext4_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4_common.c b/fs/ext4/ext4_common.c index d49ba4a995..1185cb2c04 100644 --- a/fs/ext4/ext4_common.c +++ b/fs/ext4/ext4_common.c @@ -2415,7 +2415,7 @@ int ext4fs_mount(unsigned part_length) return 1; fail: - printf("Failed to mount ext2 filesystem...\n"); + log_debug("Failed to mount ext2 filesystem...\n"); fail_noerr: free(data); ext4fs_root = NULL; |