6e418a9d26
This currently only accepts the GPS class since that's all I have for testing. Tested with a Matsushita GPS and gpsd version 2.34. Signed-off-by: Nicolas Pitre <npitre@mvista.com> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
13 lines
220 B
Makefile
13 lines
220 B
Makefile
#
|
|
# Makefile for MMC/SD card drivers
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
|
|
mmc_block-objs := block.o queue.o
|
|
|
|
obj-$(CONFIG_SDIO_UART) += sdio_uart.o
|
|
|