git: 331e1b33b39b - main - miiproxy: add missing dependency on mdio
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 27 Apr 2025 18:38:03 UTC
The branch main has been updated by adrian:
URL: https://cgit.FreeBSD.org/src/commit/?id=331e1b33b39b87bce0805d01719c3e71c130c631
commit 331e1b33b39b87bce0805d01719c3e71c130c631
Author: Adrian Chadd <adrian@FreeBSD.org>
AuthorDate: 2025-04-24 02:39:40 +0000
Commit: Adrian Chadd <adrian@FreeBSD.org>
CommitDate: 2025-04-27 18:02:30 +0000
miiproxy: add missing dependency on mdio
This is required for it to be a module
Differential Revision: https://reviews.freebsd.org/D50024
Reviewed by: imp
---
sys/dev/etherswitch/miiproxy.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/etherswitch/miiproxy.c b/sys/dev/etherswitch/miiproxy.c
index 1974a8d7bbb1..2af6533d41c8 100644
--- a/sys/dev/etherswitch/miiproxy.c
+++ b/sys/dev/etherswitch/miiproxy.c
@@ -431,3 +431,4 @@ DRIVER_MODULE(mdioproxy, mdio, mdioproxy_driver, 0, 0);
DRIVER_MODULE(miibus, miiproxy, miibus_driver, 0, 0);
MODULE_VERSION(miiproxy, 1);
MODULE_DEPEND(miiproxy, miibus, 1, 1, 1);
+MODULE_DEPEND(miiproxy, mdio, 1, 1, 1);