aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorVladimir Kondratyev <wulf@FreeBSD.org>2021-03-03 22:21:15 +0000
committerVladimir Kondratyev <wulf@FreeBSD.org>2021-04-11 21:48:51 +0000
commit99bc385243e80406ccb504384132738023be182a (patch)
tree38b8acbd053960adfd8b5a955822549e02f52695 /sys/modules
parent09d2a7a67b54eccccdc9ec97bbb7c918f0166ab8 (diff)
downloadsrc-99bc385243e80406ccb504384132738023be182a.tar.gz
src-99bc385243e80406ccb504384132738023be182a.zip
hid: add opt_hid.h to modules that use HID_DEBUG
Submitted by: Greg V <greg_AT_unrelenting_DOT_technology> Reviewed by: imp, wulf MFC after: 1 week Differential revision: https://reviews.freebsd.org/D28995 (cherry picked from commit 6241b57131a60bc2bd0eda41c145aa9659c2886b)
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/hid/hconf/Makefile1
-rw-r--r--sys/modules/hid/hkbd/Makefile2
-rw-r--r--sys/modules/hid/ps4dshock/Makefile1
3 files changed, 3 insertions, 1 deletions
diff --git a/sys/modules/hid/hconf/Makefile b/sys/modules/hid/hconf/Makefile
index 1e5c68fe1848..0ac8d969cd71 100644
--- a/sys/modules/hid/hconf/Makefile
+++ b/sys/modules/hid/hconf/Makefile
@@ -4,6 +4,7 @@
KMOD= hconf
SRCS= hconf.c
+SRCS+= opt_hid.h
SRCS+= bus_if.h device_if.h
.include <bsd.kmod.mk>
diff --git a/sys/modules/hid/hkbd/Makefile b/sys/modules/hid/hkbd/Makefile
index 38221227d1cd..8bb1c339ac6c 100644
--- a/sys/modules/hid/hkbd/Makefile
+++ b/sys/modules/hid/hkbd/Makefile
@@ -4,7 +4,7 @@
KMOD= hkbd
SRCS= hkbd.c
-SRCS+= opt_evdev.h opt_kbd.h opt_hkbd.h
+SRCS+= opt_hid.h opt_evdev.h opt_kbd.h opt_hkbd.h
SRCS+= bus_if.h device_if.h
.include <bsd.kmod.mk>
diff --git a/sys/modules/hid/ps4dshock/Makefile b/sys/modules/hid/ps4dshock/Makefile
index 688494f33ac6..ab46ba3f2363 100644
--- a/sys/modules/hid/ps4dshock/Makefile
+++ b/sys/modules/hid/ps4dshock/Makefile
@@ -4,6 +4,7 @@
KMOD= ps4dshock
SRCS= ps4dshock.c
+SRCS+= opt_hid.h
SRCS+= bus_if.h device_if.h usbdevs.h
.include <bsd.kmod.mk>