commonlib/storage: Make sd_mmc_go_idle an api

change sd_mmc_go_idle to be accessible from other files
so that we have an api to send CMD0 and reset the card.

BUG=b:78106689
TEST=Boot to OS

Change-Id: I064a9bded347be5d500047df92d1c448c3392016
Signed-off-by: Bora Guvendik <bora.guvendik@intel.com>
Reviewed-on: https://review.coreboot.org/25066
Reviewed-by: Justin TerAvest <teravest@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/commonlib/storage/sd_mmc.h b/src/commonlib/storage/sd_mmc.h
index b9aea46..e37f8f4 100644
--- a/src/commonlib/storage/sd_mmc.h
+++ b/src/commonlib/storage/sd_mmc.h
@@ -46,6 +46,7 @@
 int sd_mmc_enter_standby(struct storage_media *media);
 uint64_t sd_mmc_extract_uint32_bits(const uint32_t *array, int start,
 	int count);
+int sd_mmc_go_idle(struct storage_media *media);
 int sd_mmc_send_status(struct storage_media *media, ssize_t tries);
 int sd_mmc_set_blocklen(struct sd_mmc_ctrlr *ctrlr, int len);