diff options
| author | Vladimir Kondratyev <wulf@FreeBSD.org> | 2022-03-02 23:35:24 +0000 |
|---|---|---|
| committer | Vladimir Kondratyev <wulf@FreeBSD.org> | 2022-03-02 23:35:24 +0000 |
| commit | d5add41d4d8713d48cfb8f8a228660c8b95ff676 (patch) | |
| tree | 200e04163d0cafef26af3c186e4f0cb597ba109d /sys/modules/hid | |
| parent | 34e051c45cfc25f74dbfaa42e0dee45d670fecd3 (diff) | |
ietp(4): Driver for Elantech I2C touchpad
MFC after: 2 month
Tested by: Matt Daw <matt.daw_AT_gmail_DOT_com>
Diffstat (limited to 'sys/modules/hid')
| -rw-r--r-- | sys/modules/hid/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/hid/ietp/Makefile | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/hid/Makefile b/sys/modules/hid/Makefile index 21ec488095a5..72368487bc6c 100644 --- a/sys/modules/hid/Makefile +++ b/sys/modules/hid/Makefile @@ -17,6 +17,7 @@ SUBDIR += \ hmt \ hpen \ hsctrl \ + ietp \ ps4dshock \ xb360gp diff --git a/sys/modules/hid/ietp/Makefile b/sys/modules/hid/ietp/Makefile new file mode 100644 index 000000000000..3b5aac8653e3 --- /dev/null +++ b/sys/modules/hid/ietp/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/hid + +KMOD= ietp +SRCS= ietp.c +SRCS+= opt_hid.h +SRCS+= bus_if.h device_if.h + +.include <bsd.kmod.mk> |
