brintos

brintos / linux-shallow public Read only

0
0
Text · 705 B · 6a90773 Raw
22 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the kernel mmc core.4#5 6obj-$(CONFIG_MMC)		+= mmc_core.o7mmc_core-y			:= core.o bus.o host.o \8				   mmc.o mmc_ops.o sd.o sd_ops.o \9				   sdio.o sdio_ops.o sdio_bus.o \10				   sdio_cis.o sdio_io.o sdio_irq.o \11				   slot-gpio.o regulator.o12mmc_core-$(CONFIG_OF)		+= pwrseq.o13obj-$(CONFIG_PWRSEQ_SIMPLE)	+= pwrseq_simple.o14obj-$(CONFIG_PWRSEQ_SD8787)	+= pwrseq_sd8787.o15obj-$(CONFIG_PWRSEQ_EMMC)	+= pwrseq_emmc.o16mmc_core-$(CONFIG_DEBUG_FS)	+= debugfs.o17obj-$(CONFIG_MMC_BLOCK)		+= mmc_block.o18mmc_block-objs			:= block.o queue.o19obj-$(CONFIG_MMC_TEST)		+= mmc_test.o20obj-$(CONFIG_SDIO_UART)		+= sdio_uart.o21mmc_core-$(CONFIG_MMC_CRYPTO)	+= crypto.o22