target: msm8610: 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.

Change-Id: Ibf68c2bc50cd9c5f3dfbc71c0f0918f976cbb89c
diff --git a/target/msm8610/init.c b/target/msm8610/init.c
index d085765..5132aed 100644
--- a/target/msm8610/init.c
+++ b/target/msm8610/init.c
@@ -179,6 +179,9 @@
 
 	/* wait for the vibrator timer is expried */
 	wait_vib_timeout();
+
+	/* Disable HC mode before jumping to kernel */
+	sdhci_mode_disable(&dev->host);
 }
 
 #define SSD_CE_INSTANCE         1