[U-Boot] [PATCH v3 18/20] arm: socfpga: Enable function visible to other file
tien.fong.chee at intel.com
tien.fong.chee at intel.com
Fri Oct 13 08:08:55 UTC 2017
From: Tien Fong Chee <tien.fong.chee at intel.com>
Enable function visible to other file, so it can be used by other
functions from other file.
Signed-off-by: Tien Fong Chee <tien.fong.chee at intel.com>
---
common/spl/spl_mmc.c | 2 +-
include/spl.h | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c
index b2cccc6..159443f 100644
--- a/common/spl/spl_mmc.c
+++ b/common/spl/spl_mmc.c
@@ -113,7 +113,7 @@ static int spl_mmc_get_device_index(u32 boot_device)
return -ENODEV;
}
-static int spl_mmc_find_device(struct mmc **mmcp, u32 boot_device)
+int spl_mmc_find_device(struct mmc **mmcp, u32 boot_device)
{
#if CONFIG_IS_ENABLED(DM_MMC)
struct udevice *dev;
diff --git a/include/spl.h b/include/spl.h
index ce4cf0a..e24433d 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -10,6 +10,7 @@
/* Platform-specific defines */
#include <linux/compiler.h>
#include <asm/spl.h>
+#include <mmc.h>
/* Value in r0 indicates we booted from U-Boot */
#define UBOOT_NOT_LOADED_FROM_SPL 0x13578642
@@ -68,6 +69,7 @@ int spl_load_simple_fit(struct spl_image_info *spl_image,
void preloader_console_init(void);
u32 spl_boot_device(void);
u32 spl_boot_mode(const u32 boot_device);
+int spl_mmc_find_device(struct mmc **mmcp, u32 boot_device);
/**
* spl_set_header_raw_uboot() - Set up a standard SPL image structure
--
2.2.0
More information about the U-Boot
mailing list