git: 8fa952937bbe - main - ng_ubt(4): Add missing module dependency for _net_bluetooth sysctl node.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 08 Dec 2021 09:35:43 UTC
The branch main has been updated by hselasky: URL: https://cgit.FreeBSD.org/src/commit/?id=8fa952937bbe44a0fdd17348adfbbfd44aef6004 commit 8fa952937bbe44a0fdd17348adfbbfd44aef6004 Author: Hans Petter Selasky <hselasky@FreeBSD.org> AuthorDate: 2021-12-08 09:17:27 +0000 Commit: Hans Petter Selasky <hselasky@FreeBSD.org> CommitDate: 2021-12-08 09:18:32 +0000 ng_ubt(4): Add missing module dependency for _net_bluetooth sysctl node. Differential Revision: https://reviews.freebsd.org/D33282 PR: 238235 MFC after: 1 week Sponsored by: NVIDIA Networking --- sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index 446182bf6082..dee829336331 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -2013,5 +2013,6 @@ DRIVER_MODULE(ng_ubt, uhub, ubt_driver, ubt_devclass, ubt_modevent, 0); MODULE_VERSION(ng_ubt, NG_BLUETOOTH_VERSION); MODULE_DEPEND(ng_ubt, netgraph, NG_ABI_VERSION, NG_ABI_VERSION, NG_ABI_VERSION); MODULE_DEPEND(ng_ubt, ng_hci, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION); +MODULE_DEPEND(ng_ubt, ng_bluetooth, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION); MODULE_DEPEND(ng_ubt, usb, 1, 1, 1); USB_PNP_HOST_INFO(ubt_devs);