From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suneel Garapati Date: Tue, 29 Oct 2019 14:08:14 -0700 Subject: [U-Boot] [RFC PATCH 22/29] drivers: mmc: remove static qualifier on mmc_power_init In-Reply-To: <20191029210821.1954-1-suneelglinux@gmail.com> References: <20191029210821.1954-1-suneelglinux@gmail.com> Message-ID: <20191029210821.1954-23-suneelglinux@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Suneel Garapati For platforms with multiple slot support like OcteonTX, this is invoked per slot. Signed-off-by: Suneel Garapati --- drivers/mmc/mmc.c | 2 +- include/mmc.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index f683b52ead..68d6c0d658 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -2640,7 +2640,7 @@ __weak void board_mmc_power_init(void) } #endif -static int mmc_power_init(struct mmc *mmc) +int mmc_power_init(struct mmc *mmc) { #if CONFIG_IS_ENABLED(DM_MMC) #if CONFIG_IS_ENABLED(DM_REGULATOR) diff --git a/include/mmc.h b/include/mmc.h index 1a9efe4c38..360bc0e225 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -713,6 +713,7 @@ int mmc_unbind(struct udevice *dev); int mmc_initialize(bd_t *bis); int mmc_init_device(int num); int mmc_init(struct mmc *mmc); +int mmc_power_init(struct mmc *mmc); int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error); #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ -- 2.23.0