
Hi Masahiro:
Sorry, it's my bad to send out FTSDC021 patch before committing the corresponding platforms. The corresponding Faraday SoC platforms should be soon committed into u-boot-arm. (I wish...)
P.S: This also applies to
1. spi:ftssp010 2. i2c: fti2c010 3. net:ftmac110 4. usb: ehci: faraday fotg210/fusbh200 5. usb: gadget: fotg210
Best Wishes Dante Su
2014/1/8 Masahiro Yamada yamada.m@jp.panasonic.com:
CONFIG_FTSDC021 is not defined anywhere. So ftsdc021_sdhci.c is never compiled.
Signed-off-by: Masahiro Yamada yamada.m@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@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
U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot