aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hid
diff options
context:
space:
mode:
authorVladimir Kondratyev <wulf@FreeBSD.org>2022-03-02 23:35:23 +0000
committerVladimir Kondratyev <wulf@FreeBSD.org>2022-03-02 23:35:23 +0000
commit5aa839c9e2c373275091b8bf529c1311d0b84d76 (patch)
treea2b1de515dac46f57f8e017dbc6482b48c3c73af /sys/modules/hid
parent82e38b012cc832651ba195f5443e7f9fb64ce5d3 (diff)
Diffstat (limited to 'sys/modules/hid')
-rw-r--r--sys/modules/hid/Makefile1
-rw-r--r--sys/modules/hid/bcm5974/Makefile10
2 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/hid/Makefile b/sys/modules/hid/Makefile
index 7d5515480bc0..21ec488095a5 100644
--- a/sys/modules/hid/Makefile
+++ b/sys/modules/hid/Makefile
@@ -8,6 +8,7 @@ SUBDIR = \
hidraw
SUBDIR += \
+ bcm5974 \
hconf \
hcons \
hgame \
diff --git a/sys/modules/hid/bcm5974/Makefile b/sys/modules/hid/bcm5974/Makefile
new file mode 100644
index 000000000000..13a17ec200df
--- /dev/null
+++ b/sys/modules/hid/bcm5974/Makefile
@@ -0,0 +1,10 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/dev/hid
+
+KMOD= bcm5974
+SRCS= bcm5974.c
+SRCS+= opt_hid.h
+SRCS+= bus_if.h device_if.h usbdevs.h
+
+.include <bsd.kmod.mk>