msm8610: init: Call eMMC recovery init

Calling eMMC recovery common function in recovery code will give as
a way to distinguish what booting to proceed. There are two options
to boot - normal boot using kernel and ramdisk from boot partition
and recovery boot using kernel and ramdisk from recovery eMMC
partition. The decision is made from the common code in recovery.c
checking for boot-recovery message from misc partition.

Change-Id: I128a0e58bcb551af81af1740bb2aeeecb1e54b3c
diff --git a/target/msm8610/init.c b/target/msm8610/init.c
index f64acc2..61135f9 100644
--- a/target/msm8610/init.c
+++ b/target/msm8610/init.c
@@ -303,6 +303,11 @@
 	return board_baseband();
 }
 
+int emmc_recovery_init(void)
+{
+    return _emmc_recovery_init();
+}
+
 void target_serialno(unsigned char *buf)
 {
 	uint32_t serialno;