]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
fs: Fix SPL build if FS_LOADER is enabled
authorMayuresh Chitale <mchitale@ventanamicro.com>
Thu, 16 Nov 2023 17:16:12 +0000 (22:46 +0530)
committerTom Rini <trini@konsulko.com>
Thu, 21 Dec 2023 16:58:18 +0000 (11:58 -0500)
If FS_LOADER is enabled for the SPL then the build fails with the error:

fs/fs.o:(.data.rel.fstypes+0x128):
undefined reference to `smh_fs_set_blk_dev'
fs/fs.o:(.data.rel.fstypes+0x140):
undefined reference to `smh_fs_size'
fs/fs.o:(.data.rel.fstypes+0x148):
undefined reference to `smh_fs_read'
fs/fs.o:(.data.rel.fstypes+0x150):
undefined reference to `smh_fs_write'

Fix the error by populating the semihosting entry in the fs_types array
only for non-SPL builds.

Signed-off-by: Mayuresh Chitale <mchitale@ventanamicro.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
fs/fs.c

diff --git a/fs/fs.c b/fs/fs.c
index f33b85f92b61dff6326caa5f8cb1483aa80eb74f..f1a0b70d1d57cd4428e6b3f78554a5456408afe1 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -256,7 +256,7 @@ static struct fstype_info fstypes[] = {
                .ln = fs_ln_unsupported,
        },
 #endif
-#ifdef CONFIG_SEMIHOSTING
+#if CONFIG_IS_ENABLED(SEMIHOSTING)
        {
                .fstype = FS_TYPE_SEMIHOSTING,
                .name = "semihosting",