diff mbox series

[096/171] Correct SPL use of FS_EROFS

Message ID 20230130144324.206208-97-sjg@chromium.org
State Changes Requested
Headers show
Series Kconfig: More cleanup of CONFIG options | expand

Commit Message

Simon Glass Jan. 30, 2023, 2:42 p.m. UTC
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>
---

 fs/erofs/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Huang Jianan Jan. 31, 2023, 2:57 a.m. UTC | #1
在 2023/1/30 22:42, Simon Glass 写道:
> 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>
> ---
>
>   fs/erofs/Makefile | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/erofs/Makefile b/fs/erofs/Makefile
> index 58af6a68e41..ef94d2db45d 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 \

Looks good to me.
Reviewed-by: Huang Jianan <jnhuang95@gmail.com>

Thanks,
Jianan
diff mbox series

Patch

diff --git a/fs/erofs/Makefile b/fs/erofs/Makefile
index 58af6a68e41..ef94d2db45d 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 \