summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:40:03 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 15:41:39 +0300
commit0e56bc1668f334c648bc13e40cb99e326f727eb3 (patch)
tree42454670fce34dc52f8f6a559d8493f4d74be9ef /fs
parent93e2ce496e9724214d94d1aef14e1bedc29e4398 (diff)
downloadu-boot-0e56bc1668f334c648bc13e40cb99e326f727eb3.tar.xz
Correct SPL use of FS_EROFS
This converts 1 usage of this option to the non-SPL form, since there is no SPL_FS_EROFS defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Huang Jianan <jnhuang95@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/erofs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/erofs/Makefile b/fs/erofs/Makefile
index 58af6a68e4..ef94d2db45 100644
--- a/fs/erofs/Makefile
+++ b/fs/erofs/Makefile
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0+
#
-obj-$(CONFIG_$(SPL_)FS_EROFS) = fs.o \
+obj-$(CONFIG_FS_EROFS) = fs.o \
super.o \
namei.o \
data.o \