Remove the entire spear_sdhci.c file. There is no use case. This is dead codes. Also there is no place to call "spear_sdhci_init()" anywhere. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Reviewed-by: Tom Rini <trini@konsulko.com>master
parent
0d92f2141a
commit
c942fc925e
@ -1,27 +0,0 @@ |
||||
/*
|
||||
* (C) Copyright 2012 |
||||
* Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com. |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
||||
|
||||
#include <common.h> |
||||
#include <malloc.h> |
||||
#include <sdhci.h> |
||||
|
||||
int spear_sdhci_init(u32 regbase, u32 max_clk, u32 min_clk, u32 quirks) |
||||
{ |
||||
struct sdhci_host *host = NULL; |
||||
host = (struct sdhci_host *)malloc(sizeof(struct sdhci_host)); |
||||
if (!host) { |
||||
printf("sdhci host malloc fail!\n"); |
||||
return 1; |
||||
} |
||||
|
||||
host->name = "sdhci"; |
||||
host->ioaddr = (void *)regbase; |
||||
host->quirks = quirks; |
||||
|
||||
add_sdhci(host, max_clk, min_clk); |
||||
return 0; |
||||
} |
Loading…
Reference in new issue