mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
arm: ls1021a: drop redundant board_mmc_init()
The board_mmc_init() defined in board files is actually doing same thing with the cpu_mmc_init() defined in arch/arm/cpu/armv7/ls102xa/cpu.c. So drop it. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
5e81cbff37
commit
d9114e2b73
3 changed files with 0 additions and 43 deletions
|
@ -12,7 +12,6 @@
|
||||||
#include <asm/arch/ls102xa_devdis.h>
|
#include <asm/arch/ls102xa_devdis.h>
|
||||||
#include <asm/arch/ls102xa_soc.h>
|
#include <asm/arch/ls102xa_soc.h>
|
||||||
#include <fsl_csu.h>
|
#include <fsl_csu.h>
|
||||||
#include <fsl_esdhc.h>
|
|
||||||
#include <fsl_immap.h>
|
#include <fsl_immap.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
#include <fsl_mdio.h>
|
#include <fsl_mdio.h>
|
||||||
|
@ -103,20 +102,6 @@ int dram_init(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FSL_ESDHC
|
|
||||||
struct fsl_esdhc_cfg esdhc_cfg[1] = {
|
|
||||||
{CONFIG_SYS_FSL_ESDHC_ADDR},
|
|
||||||
};
|
|
||||||
|
|
||||||
int board_mmc_init(bd_t *bis)
|
|
||||||
{
|
|
||||||
esdhc_cfg[0].sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK);
|
|
||||||
|
|
||||||
return fsl_esdhc_initialize(bis, &esdhc_cfg[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_TSEC_ENET
|
#ifdef CONFIG_TSEC_ENET
|
||||||
int board_eth_init(bd_t *bis)
|
int board_eth_init(bd_t *bis)
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#include <hwconfig.h>
|
#include <hwconfig.h>
|
||||||
#include <mmc.h>
|
#include <mmc.h>
|
||||||
#include <fsl_csu.h>
|
#include <fsl_csu.h>
|
||||||
#include <fsl_esdhc.h>
|
|
||||||
#include <fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <fsl_sec.h>
|
#include <fsl_sec.h>
|
||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
|
@ -161,19 +160,6 @@ int dram_init(void)
|
||||||
return fsl_initdram();
|
return fsl_initdram();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FSL_ESDHC
|
|
||||||
struct fsl_esdhc_cfg esdhc_cfg[1] = {
|
|
||||||
{CONFIG_SYS_FSL_ESDHC_ADDR},
|
|
||||||
};
|
|
||||||
|
|
||||||
int board_mmc_init(bd_t *bis)
|
|
||||||
{
|
|
||||||
esdhc_cfg[0].sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK);
|
|
||||||
|
|
||||||
return fsl_esdhc_initialize(bis, &esdhc_cfg[0]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int board_early_init_f(void)
|
int board_early_init_f(void)
|
||||||
{
|
{
|
||||||
struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
|
struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#include <hwconfig.h>
|
#include <hwconfig.h>
|
||||||
#include <mmc.h>
|
#include <mmc.h>
|
||||||
#include <fsl_csu.h>
|
#include <fsl_csu.h>
|
||||||
#include <fsl_esdhc.h>
|
|
||||||
#include <fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <fsl_immap.h>
|
#include <fsl_immap.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
|
@ -233,19 +232,6 @@ int dram_init(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FSL_ESDHC
|
|
||||||
struct fsl_esdhc_cfg esdhc_cfg[1] = {
|
|
||||||
{CONFIG_SYS_FSL_ESDHC_ADDR},
|
|
||||||
};
|
|
||||||
|
|
||||||
int board_mmc_init(bd_t *bis)
|
|
||||||
{
|
|
||||||
esdhc_cfg[0].sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK);
|
|
||||||
|
|
||||||
return fsl_esdhc_initialize(bis, &esdhc_cfg[0]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int board_eth_init(bd_t *bis)
|
int board_eth_init(bd_t *bis)
|
||||||
{
|
{
|
||||||
return pci_eth_init(bis);
|
return pci_eth_init(bis);
|
||||||
|
|
Loading…
Reference in a new issue