mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 18:21:49 +00:00
d3c502b84f
The EXTRA_CFLAGS assignment in mmc/Makefile was not accomplishing anything because this flag only has effect on sources at the same level as the makefile (i.e., per directory). Since card/, core/, and host/ rely on MMC_DEBUG, the subdir-ccflags-y variant seems to be the appropriate choice. Signed-off-by: matt mooney <mfm@muteddisk.com> Signed-off-by: Chris Ball <cjb@laptop.org>
11 lines
196 B
Makefile
11 lines
196 B
Makefile
#
|
|
# Makefile for MMC/SD card drivers
|
|
#
|
|
|
|
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
|
|
mmc_block-objs := block.o queue.o
|
|
obj-$(CONFIG_MMC_TEST) += mmc_test.o
|
|
|
|
obj-$(CONFIG_SDIO_UART) += sdio_uart.o
|
|
|