mmc: Drop mmc_register()
authorSimon Glass <sjg@chromium.org>
Sat, 14 May 2016 20:02:55 +0000 (14:02 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 27 May 2016 02:50:29 +0000 (20:50 -0600)
This function is no longer used.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/mmc/mmc.c
include/mmc.h

index 74b3d68..1ddeff4 100644 (file)
@@ -1531,15 +1531,6 @@ static int mmc_send_if_cond(struct mmc *mmc)
        return 0;
 }
 
-/* not used any more */
-int __deprecated mmc_register(struct mmc *mmc)
-{
-#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
-       printf("%s is deprecated! use mmc_create() instead.\n", __func__);
-#endif
-       return -1;
-}
-
 #ifdef CONFIG_BLK
 int mmc_bind(struct udevice *dev, struct mmc *mmc, const struct mmc_config *cfg)
 {
index a5c6573..056296e 100644 (file)
@@ -411,7 +411,6 @@ enum mmc_hwpart_conf_mode {
        MMC_HWPART_CONF_COMPLETE,
 };
 
-int mmc_register(struct mmc *mmc);
 struct mmc *mmc_create(const struct mmc_config *cfg, void *priv);
 
 /**