From: Pali Rohár Date: Wed, 6 Apr 2022 21:34:00 +0000 (+0200) Subject: fs: Allow to compile FS_SQUASHFS only for proper U-Boot X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=f362deaefbb410a66248b6061e71323913e0ca62;p=u-boot.git fs: Allow to compile FS_SQUASHFS only for proper U-Boot CONFIG_SPL_FS_SQUASHFS cannot be disabled when CONFIG_FS_SQUASHFS is enabled. Fix it. Signed-off-by: Pali Rohár --- diff --git a/fs/fs.c b/fs/fs.c index 97d47916f3..b812597ced 100644 --- a/fs/fs.c +++ b/fs/fs.c @@ -309,7 +309,7 @@ static struct fstype_info fstypes[] = { }, #endif #endif -#if IS_ENABLED(CONFIG_FS_SQUASHFS) +#if CONFIG_IS_ENABLED(FS_SQUASHFS) { .fstype = FS_TYPE_SQUASHFS, .name = "squashfs",