diff mbox

[U-Boot] mmc: ftsdc021_sdhci: remove the ftsdc021_sdhci.c

Message ID 20170202103336.16438-1-jh80.chung@samsung.com
State Accepted
Commit d14f1d511a8070f6c435a3ccc300ae488449706e
Delegated to: Jaehoon Chung
Headers show

Commit Message

Jaehoon Chung Feb. 2, 2017, 10:33 a.m. UTC
ftsdc021_sdhci.c is dead file.
There is no reason to maintain this host controller.
Removes the entire ftsdc021_sdhci.c.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 drivers/mmc/Makefile         |  1 -
 drivers/mmc/ftsdc021_sdhci.c | 34 ----------------------------------
 2 files changed, 35 deletions(-)
 delete mode 100644 drivers/mmc/ftsdc021_sdhci.c

Comments

Tom Rini Feb. 2, 2017, 11:58 a.m. UTC | #1
On Thu, Feb 02, 2017 at 07:33:36PM +0900, Jaehoon Chung wrote:

> ftsdc021_sdhci.c is dead file.
> There is no reason to maintain this host controller.
> Removes the entire ftsdc021_sdhci.c.
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>

Reviewed-by: Tom Rini <trini@konsulko.com>
Jaehoon Chung Feb. 9, 2017, 5:27 a.m. UTC | #2
On 02/02/2017 08:58 PM, Tom Rini wrote:
> On Thu, Feb 02, 2017 at 07:33:36PM +0900, Jaehoon Chung wrote:
> 
>> ftsdc021_sdhci.c is dead file.
>> There is no reason to maintain this host controller.
>> Removes the entire ftsdc021_sdhci.c.
>>
>> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> 
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied on u-boot-mmc. Thanks!

Best Regards,
Jaehoon Chung

>
diff mbox

Patch

diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile
index e78bd0d..8e922db 100644
--- a/drivers/mmc/Makefile
+++ b/drivers/mmc/Makefile
@@ -24,7 +24,6 @@  obj-$(CONFIG_MMC_DW_ROCKCHIP)		+= rockchip_dw_mmc.o
 obj-$(CONFIG_MMC_DW_SOCFPGA)		+= socfpga_dw_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
 ifdef CONFIG_SUPPORT_EMMC_BOOT
 obj-$(CONFIG_GENERIC_MMC) += mmc_boot.o
diff --git a/drivers/mmc/ftsdc021_sdhci.c b/drivers/mmc/ftsdc021_sdhci.c
deleted file mode 100644
index 4940ccb..0000000
--- a/drivers/mmc/ftsdc021_sdhci.c
+++ /dev/null
@@ -1,34 +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 -ENOMEM;
-	}
-
-	host->name = "FTSDC021";
-	host->ioaddr = (void __iomem *)regbase;
-	host->quirks = 0;
-	host->max_clk = freq;
-	add_sdhci(host, 0, 0);
-
-	return 0;
-}