Merge "target: common: Remove weak function for mmc caps."
diff --git a/target/init.c b/target/init.c
index 78a7bad..7d51ea9 100644
--- a/target/init.c
+++ b/target/init.c
@@ -24,7 +24,6 @@
 #include <debug.h>
 #include <target.h>
 #include <compiler.h>
-#include <mmc.h>
 
 #define EXPAND(NAME) #NAME
 #define TARGET(NAME) EXPAND(NAME)
@@ -118,14 +117,3 @@
 __WEAK void target_usb_stop(void)
 {
 }
-
-/*
- * Default target specific function to set the capabilities for the host
- */
-__WEAK void target_mmc_caps(struct mmc_host *host)
-{
-	host->caps.ddr_mode = 0;
-	host->caps.hs200_mode = 0;
-	host->caps.bus_width = MMC_BOOT_BUS_WIDTH_4_BIT;
-	host->caps.hs_clk_rate = MMC_CLK_50MHZ;
-}