From: Marek Vasut Date: Mon, 17 Mar 2025 03:12:48 +0000 (+0100) Subject: fs: exfat: Demote filesystem detection failure message to debug() X-Git-Tag: v2025.07-rc1~119^2~13^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2375f713a219f03c36a0deb0bac90f0b2c2d2162;p=pandora-u-boot.git fs: exfat: Demote filesystem detection failure message to debug() Demote "exFAT file system is not found" message to debug(). This is printed when U-Boot attempts to auto-detect the filesystem via generic filesystem API by attempting to mount the device, and fails to do so because there is another filesystem in place. The libexfat-fuse code prints this an error, which interferes with 'test_gpt' test. Demote the message to debug(). Reviewed-by: Tom Rini Signed-off-by: Marek Vasut --- diff --git a/fs/exfat/mount.c b/fs/exfat/mount.c index c17a84735fc..0ff297af67b 100644 --- a/fs/exfat/mount.c +++ b/fs/exfat/mount.c @@ -226,7 +226,12 @@ int exfat_mount(struct exfat* ef, const char* spec, const char* options) } if (memcmp(ef->sb->oem_name, "EXFAT ", 8) != 0) { - exfat_error("exFAT file system is not found"); +#ifndef __UBOOT__ + exfat_error( +#else + exfat_debug( +#endif + "exFAT file system is not found"); exfat_free(ef); return -EIO; }