diff options
author | Andy Fleming <afleming@freescale.com> | 2008-10-30 16:19:25 -0500 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2009-02-16 18:07:40 -0600 |
commit | b2e2ed0233a5ef299361abec4fbdaefb63456eff (patch) | |
tree | ff07986e344483f9813677931b235d5bc10655ec /cpu/pxa | |
parent | e1be0d25ecf494ae81245ca438738ba839d6329b (diff) | |
download | u-boot-b2e2ed0233a5ef299361abec4fbdaefb63456eff.tar.gz u-boot-b2e2ed0233a5ef299361abec4fbdaefb63456eff.tar.xz u-boot-b2e2ed0233a5ef299361abec4fbdaefb63456eff.zip |
Eliminate support for using MMC as memory
MMC cards are not memory, so we stop treating them that way.
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'cpu/pxa')
-rw-r--r-- | cpu/pxa/mmc.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index d735c8d485..1f0d488889 100644 --- a/cpu/pxa/mmc.c +++ b/cpu/pxa/mmc.c @@ -645,18 +645,4 @@ mmc_init(int verbose) return rc; } -int mmc_ident(block_dev_desc_t * dev) -{ - return 0; -} - -int mmc2info(ulong addr) -{ - if (addr >= CONFIG_SYS_MMC_BASE - && addr < CONFIG_SYS_MMC_BASE + (mmc_dev.lba * mmc_dev.blksz)) { - return 1; - } - return 0; -} - #endif /* CONFIG_MMC */ |