From bac33b62ec411bb153bceee173c7fef0b07366b3 Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Thu, 22 Mar 2018 18:04:58 +0100 Subject: [PATCH] fs: sdfat: Fix default SDFAT_USE_FOR_VFAT * This matches what other devices are using, and this only shows up if VFAT is off in the first place Signed-off-by: Paul Keith --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index 88cafc1..3a15bbb 100644 --- a/Kconfig +++ b/Kconfig @@ -24,7 +24,7 @@ config SDFAT_USE_FOR_EXFAT config SDFAT_USE_FOR_VFAT bool "Register sdFAT as VFAT" - default n + default y depends on SDFAT_FS && !VFAT_FS help If you want to register sdFAT as available for VFAT, say Y.