[U-Boot] [PATCH] mmc: Delete unused driver ftsdc021_sdhci

Masahiro Yamada yamada.m at jp.panasonic.com
Wed Jan 8 12:25:15 CET 2014


CONFIG_FTSDC021 is not defined anywhere.
So ftsdc021_sdhci.c is never compiled.

Signed-off-by: Masahiro Yamada <yamada.m at jp.panasonic.com>
---
 drivers/mmc/Makefile         |  1 -
 drivers/mmc/ftsdc021_sdhci.c | 33 ---------------------------------
 2 files changed, 34 deletions(-)
 delete mode 100644 drivers/mmc/ftsdc021_sdhci.c

diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile
index 1ed26ca..a7ae38d 100644
--- a/drivers/mmc/Makefile
+++ b/drivers/mmc/Makefile
@@ -9,7 +9,6 @@ obj-$(CONFIG_BFIN_SDH) += bfin_sdh.o
 obj-$(CONFIG_DAVINCI_MMC) += davinci_mmc.o
 obj-$(CONFIG_FSL_ESDHC) += fsl_esdhc.o
 obj-$(CONFIG_FTSDC010) += ftsdc010_mci.o
-obj-$(CONFIG_FTSDC021) += ftsdc021_sdhci.o
 obj-$(CONFIG_GENERIC_MMC) += mmc.o
 obj-$(CONFIG_GENERIC_ATMEL_MCI) += gen_atmel_mci.o
 obj-$(CONFIG_MMC_SPI) += mmc_spi.o
diff --git a/drivers/mmc/ftsdc021_sdhci.c b/drivers/mmc/ftsdc021_sdhci.c
deleted file mode 100644
index 1f6cdba..0000000
--- a/drivers/mmc/ftsdc021_sdhci.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * (C) Copyright 2013 Faraday Technology
- * Kuo-Jung Su <dantesu at faraday-tech.com>
- *
- * SPDX-License-Identifier:	GPL-2.0+
- */
-
-#include <common.h>
-#include <malloc.h>
-#include <sdhci.h>
-
-#ifndef CONFIG_FTSDC021_CLOCK
-#define CONFIG_FTSDC021_CLOCK   clk_get_rate("MMC")
-#endif
-
-int ftsdc021_sdhci_init(u32 regbase)
-{
-	struct sdhci_host *host = NULL;
-	uint32_t freq = CONFIG_FTSDC021_CLOCK;
-
-	host = calloc(1, sizeof(struct sdhci_host));
-	if (!host) {
-		puts("sdh_host malloc fail!\n");
-		return 1;
-	}
-
-	host->name = "FTSDC021";
-	host->ioaddr = (void __iomem *)regbase;
-	host->quirks = 0;
-	add_sdhci(host, freq, 0);
-
-	return 0;
-}
-- 
1.8.3.2



More information about the U-Boot mailing list