aboutsummaryrefslogtreecommitdiff
path: root/fs/fs_internal.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-11 09:47:11 -0600
committerSimon Glass <sjg@chromium.org>2022-10-17 21:17:12 -0600
commitf337fb9ea8b8163e2b5cff7e2691a30d23841f3e (patch)
tree97a58c181980d8c84057c76bed358ce402a76abb /fs/fs_internal.c
parent19511935df44f0fec01c6538176f1b6ea4dd63d3 (diff)
downloadu-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.zip
u-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.tar.gz
u-boot-f337fb9ea8b8163e2b5cff7e2691a30d23841f3e.tar.bz2
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/fs_internal.c')
-rw-r--r--fs/fs_internal.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fs_internal.c b/fs/fs_internal.c
index ae1cb85..111f91b 100644
--- a/fs/fs_internal.c
+++ b/fs/fs_internal.c
@@ -29,8 +29,7 @@ int fs_devread(struct blk_desc *blk, struct disk_partition *partition,
/* Check partition boundaries */
if ((sector + ((byte_offset + byte_len - 1) >> log2blksz))
>= partition->size) {
- log_err("%s read outside partition " LBAFU "\n", __func__,
- sector);
+ log_debug("read outside partition " LBAFU "\n", sector);
return 0;
}