diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2018-04-08 15:22:58 +0200 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2018-04-11 23:11:56 +0200 |
commit | e94cad93b7f940de0eda446b0cd9a43da7a1e328 (patch) | |
tree | 39a7a3e9fe5d5d00d54c0da45fc59c5b30abc5db /drivers/mmc/Makefile | |
parent | 78bf3f2180cd8d25c27cd6c25c80e2be95d0ccf6 (diff) | |
download | u-boot-e94cad93b7f940de0eda446b0cd9a43da7a1e328.zip u-boot-e94cad93b7f940de0eda446b0cd9a43da7a1e328.tar.gz u-boot-e94cad93b7f940de0eda446b0cd9a43da7a1e328.tar.bz2 |
mmc: uniphier: Split out SoC specific bits from the driver
Factor out common code from the uniphier SD driver, change the prefix
of the functions from uniphier_sd_ to matsu_sd_ and create separate
renesas-sdhi.c driver. Thus far, all the code is still compiled when
CONFIG_UNIPHIER_MMC is selected and there is no functional change.
This patch is a preparation for further split of the SoC specific
parts of the Matsushita SD driver, used both on Uniphier and R-Car.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/mmc/Makefile')
-rw-r--r-- | drivers/mmc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile index 9583410..25eb669 100644 --- a/drivers/mmc/Makefile +++ b/drivers/mmc/Makefile @@ -62,5 +62,5 @@ obj-$(CONFIG_MMC_SDHCI_XENON) += xenon_sdhci.o obj-$(CONFIG_MMC_SDHCI_ZYNQ) += zynq_sdhci.o obj-$(CONFIG_MMC_SUNXI) += sunxi_mmc.o -obj-$(CONFIG_MMC_UNIPHIER) += uniphier-sd.o +obj-$(CONFIG_MMC_UNIPHIER) += matsushita-common.o uniphier-sd.o renesas-sdhi.o obj-$(CONFIG_MMC_BCM2835) += bcm2835_sdhost.o |