summaryrefslogtreecommitdiffstats
path: root/drivers/mci/Makefile
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2019-12-02 07:19:49 -0800
committerSascha Hauer <s.hauer@pengutronix.de>2019-12-04 08:37:12 +0100
commit10d13ce95256b09e716cacd8753c67b40e2b3149 (patch)
treeef80fcedb630e0e3552313124a48c25a0ad3f474 /drivers/mci/Makefile
parentb86dbc7b110d8eab0408d5766bd372d953334cf8 (diff)
downloadbarebox-10d13ce95256b09e716cacd8753c67b40e2b3149.tar.gz
barebox-10d13ce95256b09e716cacd8753c67b40e2b3149.tar.xz
mci: imx-esdhc-pbl: Share IO accessors with regular driver
With a bit of a change to PBL ESDHC initialization code it is possible to share all of the low-level I/O accessor code with the regular driver, including sharing definitions of flags describing HW's quirks. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/mci/Makefile')
-rw-r--r--drivers/mci/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mci/Makefile b/drivers/mci/Makefile
index e2e3ba7ef4..cfb84a899a 100644
--- a/drivers/mci/Makefile
+++ b/drivers/mci/Makefile
@@ -5,8 +5,8 @@ obj-$(CONFIG_MCI_BCM283X) += mci-bcm2835.o
obj-$(CONFIG_MCI_BCM283X_SDHOST) += bcm2835-sdhost.o
obj-$(CONFIG_MCI_DOVE) += dove-sdhci.o
obj-$(CONFIG_MCI_IMX) += imx.o
-obj-$(CONFIG_MCI_IMX_ESDHC) += imx-esdhc.o
-pbl-$(CONFIG_MCI_IMX_ESDHC_PBL) += imx-esdhc-pbl.o
+obj-$(CONFIG_MCI_IMX_ESDHC) += imx-esdhc.o imx-esdhc-common.o
+pbl-$(CONFIG_MCI_IMX_ESDHC_PBL) += imx-esdhc-pbl.o imx-esdhc-common.o
obj-$(CONFIG_MCI_MXS) += mxs.o
obj-$(CONFIG_MCI_OMAP_HSMMC) += omap_hsmmc.o
obj-$(CONFIG_MCI_PXA) += pxamci.o