ba264b3403
it should work on the Au1100 as well. Updated defconfig to include driver. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
363 B
Makefile
23 lines
363 B
Makefile
#
|
|
# Makefile for the kernel mmc device drivers.
|
|
#
|
|
|
|
#
|
|
# Core
|
|
#
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
|
|
#
|
|
# Media drivers
|
|
#
|
|
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
|
|
|
|
#
|
|
# Host drivers
|
|
#
|
|
obj-$(CONFIG_MMC_ARMMMCI) += mmci.o
|
|
obj-$(CONFIG_MMC_PXA) += pxamci.o
|
|
obj-$(CONFIG_MMC_WBSD) += wbsd.o
|
|
obj-$(CONFIG_MMC_AU1X) += au1xmmc.o
|
|
|
|
mmc_core-y := mmc.o mmc_queue.o mmc_sysfs.o
|