target: msm8994: Read the partition table for all luns

Read the partition table for all luns after the storage initialization
instead of reading during fastboot initialization. This is needed if
appsbl wants to read/write data to partitions from different luns before
entering into fastboot mode.

Change-Id: Id822e1a9cdfbdd596333dea77ef72ad2864da009
diff --git a/target/msm8994/init.c b/target/msm8994/init.c
index d540bd4..36e1ec3 100644
--- a/target/msm8994/init.c
+++ b/target/msm8994/init.c
@@ -327,11 +327,7 @@
 	}
 
 	/* Storage initialization is complete, read the partition table info */
-	if (partition_read_table())
-	{
-		dprintf(CRITICAL, "Error reading the partition table info\n");
-		ASSERT(0);
-	}
+	mmc_read_partition_table(0);
 
 	rpm_smd_init();
 
@@ -555,12 +551,6 @@
 	ASSERT(0);
 }
 
-void target_fastboot_init(void)
-{
-	/* We are entering fastboot mode, so read partition table */
-	mmc_read_partition_table(1);
-}
-
 uint32_t target_ddr_cfg_val()
 {
 	return DDR_CFG_DLY_VAL;