mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 18:04:36 +00:00
23 lines
326 B
Makefile
23 lines
326 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
|
||
|
|
||
|
mmc_core-y := mmc.o mmc_queue.o mmc_sysfs.o
|