mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
de13d5a44e
The mmc regulator helper functions, are placed in the extensive core.c file. In a step towards trying to create a better structure of files, avoiding too many lines of code per file, let's move these helpers to a new file, regulator.c. Moreover, this within this context it makes sense to also drop the export of mmc_vddrange_to_ocrmask(), but instead let's make it internal to the mmc core. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
21 lines
663 B
Makefile
21 lines
663 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel mmc core.
|
|
#
|
|
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
mmc_core-y := core.o bus.o host.o \
|
|
mmc.o mmc_ops.o sd.o sd_ops.o \
|
|
sdio.o sdio_ops.o sdio_bus.o \
|
|
sdio_cis.o sdio_io.o sdio_irq.o \
|
|
slot-gpio.o regulator.o
|
|
mmc_core-$(CONFIG_OF) += pwrseq.o
|
|
obj-$(CONFIG_PWRSEQ_SIMPLE) += pwrseq_simple.o
|
|
obj-$(CONFIG_PWRSEQ_SD8787) += pwrseq_sd8787.o
|
|
obj-$(CONFIG_PWRSEQ_EMMC) += pwrseq_emmc.o
|
|
mmc_core-$(CONFIG_DEBUG_FS) += debugfs.o
|
|
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
|