mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00
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 <trini@konsulko.com> Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
74eb84686f
commit
2375f713a2
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue