]> git.ipfire.org Git - thirdparty/u-boot.git/blobdiff - fs/fs_internal.c
Merge tag 'doc-2023-10-rc3-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
[thirdparty/u-boot.git] / fs / fs_internal.c
index bfc35c996c83888848b5d9bc978913343a69e19a..111f91b355d1ff974d0953944464fc07c48bbe62 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 /*
- * 2017 by Marek Behun <marek.behun@nic.cz>
+ * 2017 by Marek BehĂșn <kabel@kernel.org>
  *
  * Derived from code in ext4/dev.c, which was based on reiserfs/dev.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;
        }