diff options
author | Daniel J. Ogorchock <djogorchock@gmail.com> | 2021-09-11 20:36:24 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-10-27 11:05:51 +0300 |
commit | 2af16c1f846bd60240745bbd3afa13d5f040c61a (patch) | |
tree | c25a099af90fc04acee4f0fe236a1ac1ef2aea41 /drivers/hid/Makefile | |
parent | 3c92cb4cb60c71b574e47108ead8b6f0470850db (diff) | |
download | linux-2af16c1f846bd60240745bbd3afa13d5f040c61a.tar.xz |
HID: nintendo: add nintendo switch controller driver
The hid-nintendo driver supports the Nintendo Switch Pro Controllers and
the Joy-Cons. The Pro Controllers can be used over USB or Bluetooth.
The Joy-Cons each create their own, independent input devices, so it is
up to userspace to combine them if desired.
Signed-off-by: Daniel J. Ogorchock <djogorchock@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index e29efcb1c040..7a71371e3adf 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -78,6 +78,7 @@ obj-$(CONFIG_HID_MAYFLASH) += hid-mf.o obj-$(CONFIG_HID_MICROSOFT) += hid-microsoft.o obj-$(CONFIG_HID_MONTEREY) += hid-monterey.o obj-$(CONFIG_HID_MULTITOUCH) += hid-multitouch.o +obj-$(CONFIG_HID_NINTENDO) += hid-nintendo.o obj-$(CONFIG_HID_NTI) += hid-nti.o obj-$(CONFIG_HID_NTRIG) += hid-ntrig.o obj-$(CONFIG_HID_ORTEK) += hid-ortek.o |