From: Simon Glass <sjg@chromium.org>
Date: Sun, 5 Feb 2023 22:40:03 +0000 (-0700)
Subject: Correct SPL use of FS_EROFS
X-Git-Tag: v2025.01-rc5-pxa1908~1114^2~64
X-Git-Url: http://git.dujemihanovic.xyz/img/static/%7B%7B?a=commitdiff_plain;h=0e56bc1668f334c648bc13e40cb99e326f727eb3;p=u-boot.git

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>
---

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 \