git: 1522062bade2 - main - hidraw(4): Drop unneeded usb kernel module dependency
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 30 Dec 2022 15:25:41 UTC
The branch main has been updated by wulf: URL: https://cgit.FreeBSD.org/src/commit/?id=1522062bade29c973c152303005a31a578f090d9 commit 1522062bade29c973c152303005a31a578f090d9 Author: Vladimir Kondratyev <wulf@FreeBSD.org> AuthorDate: 2022-12-30 15:04:24 +0000 Commit: Vladimir Kondratyev <wulf@FreeBSD.org> CommitDate: 2022-12-30 15:24:53 +0000 hidraw(4): Drop unneeded usb kernel module dependency HID is not a part of usb subsystem for a while. MFC after: 2 weeks --- sys/dev/hid/hidraw.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/hid/hidraw.c b/sys/dev/hid/hidraw.c index 4ea39dda3837..51db914a5d9d 100644 --- a/sys/dev/hid/hidraw.c +++ b/sys/dev/hid/hidraw.c @@ -991,5 +991,4 @@ static driver_t hidraw_driver = { DRIVER_MODULE(hidraw, hidbus, hidraw_driver, NULL, NULL); MODULE_DEPEND(hidraw, hidbus, 1, 1, 1); MODULE_DEPEND(hidraw, hid, 1, 1, 1); -MODULE_DEPEND(hidraw, usb, 1, 1, 1); MODULE_VERSION(hidraw, 1);