target: msm8974: Disable SDHC mode during target uninit

SDCC controller can run in SDHC mode or MCI mode. ABL runs in
SDHC mode, with this if we jump to hlos the hlos mount operations
are failing as the mount deamon is not able to access emmc partitions.
Disable SDHC mode before jumping to kernel resolves this issue by
helping SDCC kernel driver by giving a clean start.

CRs-Fixed: 607386
Change-Id: I10eb871aac6af5ae63ab88284f82ba140be341f1
diff --git a/target/msm8974/init.c b/target/msm8974/init.c
index afb6486..2e6c151 100644
--- a/target/msm8974/init.c
+++ b/target/msm8974/init.c
@@ -695,6 +695,9 @@
 #ifdef SSD_ENABLE
 	clock_ce_disable(SSD_CE_INSTANCE_1);
 #endif
+
+	/* Disable HC mode before jumping to kernel */
+	sdhci_mode_disable(&dev->host);
 }
 
 void shutdown_device()