forked from luck/tmp_suning_uos_patched
da7fbe58d2
Move protocol operations and definitions into their own files in an effort to separate protocol handling and bus arbitration more clearly. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
12 lines
187 B
Makefile
12 lines
187 B
Makefile
#
|
|
# Makefile for the kernel mmc core.
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
mmc_core-y := core.o sysfs.o mmc_ops.o sd_ops.o
|
|
|