summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/sys
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-03-01 10:49:05 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-03-01 10:49:05 +0100
commitae9e46d7c5648c245dd327538c0f9e943456295d (patch)
treee262062952c0b466ccba592e09a504292f1c3396 /rtemsbsd/sys
parentAdd poll() and select() support for Termios (diff)
downloadrtems-libbsd-ae9e46d7c5648c245dd327538c0f9e943456295d.tar.bz2
Fix dw_mmc dependencies
Diffstat (limited to 'rtemsbsd/sys')
-rw-r--r--rtemsbsd/sys/dev/dw_mmc/dw_mmc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtemsbsd/sys/dev/dw_mmc/dw_mmc.c b/rtemsbsd/sys/dev/dw_mmc/dw_mmc.c
index af75722b..24e02a2b 100644
--- a/rtemsbsd/sys/dev/dw_mmc/dw_mmc.c
+++ b/rtemsbsd/sys/dev/dw_mmc/dw_mmc.c
@@ -1103,3 +1103,5 @@ static driver_t dw_mmc_driver = {
static devclass_t dw_mmc_devclass;
DRIVER_MODULE(dw_mmc, nexus, dw_mmc_driver, dw_mmc_devclass, NULL, NULL);
+DRIVER_MODULE(mmc, dw_mmc, mmc_driver, mmc_devclass, NULL, NULL);
+MODULE_DEPEND(dw_mmc, mmc, 1, 1, 1);