target: thulium: Read the entire partition table

Read the partition table from all the luns during boot up.
Some of the partitions needed for boot up are moved to different
lun's other then lun0. To be able to boot up we need to read
the partition table from all luns.

Change-Id: I7737a7e44e5ac0542d8483097f56494964e988ad
diff --git a/target/thulium/init.c b/target/thulium/init.c
index 6f2a568..88ac212 100644
--- a/target/thulium/init.c
+++ b/target/thulium/init.c
@@ -233,11 +233,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);
 }
 
 unsigned board_machtype(void)
@@ -362,12 +358,6 @@
 	return 1;
 }
 
-void target_fastboot_init(void)
-{
-	/* We are entering fastboot mode, so read partition table */
-	mmc_read_partition_table(1);
-}
-
 crypto_engine_type board_ce_type(void)
 {
 	return CRYPTO_ENGINE_TYPE_SW;