diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:40:03 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-10 07:41:39 -0500 |
commit | 0e56bc1668f334c648bc13e40cb99e326f727eb3 (patch) | |
tree | 42454670fce34dc52f8f6a559d8493f4d74be9ef /fs | |
parent | 93e2ce496e9724214d94d1aef14e1bedc29e4398 (diff) | |
download | u-boot-0e56bc1668f334c648bc13e40cb99e326f727eb3.tar.gz u-boot-0e56bc1668f334c648bc13e40cb99e326f727eb3.tar.bz2 u-boot-0e56bc1668f334c648bc13e40cb99e326f727eb3.zip |
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/Makefile | 2 |
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 \ |