diff options
author | Ilya Yanok <yanok@emcraft.com> | 2009-06-08 04:12:49 +0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-09 23:47:38 +0200 |
commit | ba3dbaf281130029ecb970a922551902c1d80b50 (patch) | |
tree | ca8741a8a948a84cb62ab86cfadabdcb26c99f7e /drivers/mmc/Makefile | |
parent | 642d7b63c343633dcafc4e23a20e32604a05ff13 (diff) | |
download | u-boot-imx-ba3dbaf281130029ecb970a922551902c1d80b50.zip u-boot-imx-ba3dbaf281130029ecb970a922551902c1d80b50.tar.gz u-boot-imx-ba3dbaf281130029ecb970a922551902c1d80b50.tar.bz2 |
mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
This is a port of Linux driver for SDHC host controller hardware
found on Freescale's MX2 and MX3 processors. Uses new generic MMC
framework (CONFIG_GENERIC_MMC) and it looks like there are some
problems with a framework (at least on LE cpus). Some of these
problems are addressed in the following patches.
Signed-off-by: Ilya Yanok <yanok@emcraft.com>
Diffstat (limited to 'drivers/mmc/Makefile')
-rw-r--r-- | drivers/mmc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile index 1b0af12..6fa04b8 100644 --- a/drivers/mmc/Makefile +++ b/drivers/mmc/Makefile @@ -30,6 +30,7 @@ COBJS-$(CONFIG_ATMEL_MCI) += atmel_mci.o COBJS-$(CONFIG_BFIN_SDH) += bfin_sdh.o COBJS-$(CONFIG_OMAP3_MMC) += omap3_mmc.o COBJS-$(CONFIG_FSL_ESDHC) += fsl_esdhc.o +COBJS-$(CONFIG_MXC_MMC) += mxcmmc.o COBJS-$(CONFIG_PXA_MMC) += pxa_mmc.o COBJS := $(COBJS-y) |