summaryrefslogtreecommitdiff
path: root/sys/dev/flash
diff options
context:
space:
mode:
authorIan Lepore <ian@FreeBSD.org>2018-02-20 03:51:09 +0000
committerIan Lepore <ian@FreeBSD.org>2018-02-20 03:51:09 +0000
commit42c52f36e4e3956e34a009653193d3e4cd057439 (patch)
treebb5f4c3f4f7a9704fad0c208e9abe91f593e76dc /sys/dev/flash
parent8d415029e18f7364a1f05208031384fca6cade8d (diff)
Notes
Diffstat (limited to 'sys/dev/flash')
-rw-r--r--sys/dev/flash/at45d.c1
-rw-r--r--sys/dev/flash/mx25l.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/flash/at45d.c b/sys/dev/flash/at45d.c
index 89e5dec39cbf..678e1d31fe8d 100644
--- a/sys/dev/flash/at45d.c
+++ b/sys/dev/flash/at45d.c
@@ -450,3 +450,4 @@ static driver_t at45d_driver = {
};
DRIVER_MODULE(at45d, spibus, at45d_driver, at45d_devclass, NULL, NULL);
+MODULE_DEPEND(at45d, spibus, 1, 1, 1);
diff --git a/sys/dev/flash/mx25l.c b/sys/dev/flash/mx25l.c
index a28f42218936..fb4cc4eb350b 100644
--- a/sys/dev/flash/mx25l.c
+++ b/sys/dev/flash/mx25l.c
@@ -648,3 +648,4 @@ static driver_t mx25l_driver = {
};
DRIVER_MODULE(mx25l, spibus, mx25l_driver, mx25l_devclass, 0, 0);
+MODULE_DEPEND(mx25l, spibus, 1, 1, 1);