2006-12-08 20:41:30 +03:00
#
# HID driver configuration
#
2012-06-25 18:55:41 +04:00
menu "HID support"
depends on INPUT
2006-12-08 20:41:30 +03:00
config HID
2012-06-25 18:55:41 +04:00
tristate "HID bus support"
2006-12-22 20:09:16 +03:00
depends on INPUT
2006-12-08 20:41:30 +03:00
default y
---help---
2007-01-04 01:03:14 +03:00
A human interface device (HID) is a type of computer device that
interacts directly with and takes input from humans. The term "HID"
most commonly used to refer to the USB-HID specification, but other
devices (such as, but not strictly limited to, Bluetooth) are
designed using HID specification (this involves certain keyboards,
2012-06-25 18:55:41 +04:00
mice, tablets, etc). This option adds the HID bus to the kernel,
together with generic HID layer code. The HID devices are added and
removed from the HID bus by the transport-layer drivers, such as
usbhid (USB_HID) and hidp (BT_HIDP).
2007-01-04 01:03:14 +03:00
For docs and specs, see http://www.usb.org/developers/hidpage/
2009-01-06 12:15:27 +03:00
If unsure, say Y.
2006-12-08 20:41:30 +03:00
2012-06-25 18:55:41 +04:00
if HID
HID: hid-input: add support for HID devices reporting Battery Strength
Some HID devices, such as my Bluetooth mouse, report their battery
strength as an event. Rather than passing it through as a strange
absolute input event, this patch registers it with the power_supply
subsystem as a battery, so that the device's Battery Strength can be
reported to usermode.
The battery appears in sysfs names
/sys/class/power_supply/hid-<UNIQ>-battery, and it is a child of the
battery-containing device, so it should be clear what it's the battery of.
Unfortunately on my current Fedora 16 system, while the battery does
appear in the UI, it is listed as a Laptop Battery with 0% charge (since
it ignores the "capacity" property of the battery and instead computes
it from the "energy*" fields, which we can't supply given the limited
information contained within the HID Report).
Still, this patch is the first step.
Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-11-23 12:49:14 +04:00
config HID_BATTERY_STRENGTH
2012-04-24 12:51:30 +04:00
bool "Battery level reporting for HID devices"
2011-12-19 12:16:29 +04:00
depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
2012-04-18 18:05:17 +04:00
default n
2012-04-24 12:51:30 +04:00
---help---
This option adds support of reporting battery strength (for HID devices
that support this feature) through power_supply class so that userspace
tools, such as upower, can display it.
HID: hid-input: add support for HID devices reporting Battery Strength
Some HID devices, such as my Bluetooth mouse, report their battery
strength as an event. Rather than passing it through as a strange
absolute input event, this patch registers it with the power_supply
subsystem as a battery, so that the device's Battery Strength can be
reported to usermode.
The battery appears in sysfs names
/sys/class/power_supply/hid-<UNIQ>-battery, and it is a child of the
battery-containing device, so it should be clear what it's the battery of.
Unfortunately on my current Fedora 16 system, while the battery does
appear in the UI, it is listed as a Laptop Battery with 0% charge (since
it ignores the "capacity" property of the battery and instead computes
it from the "energy*" fields, which we can't supply given the limited
information contained within the HID Report).
Still, this patch is the first step.
Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-11-23 12:49:14 +04:00
2007-05-14 11:57:40 +04:00
config HIDRAW
bool "/dev/hidraw raw HID device support"
depends on HID
---help---
Say Y here if you want to support HID devices (from the USB
specification standpoint) that aren't strictly user interface
devices, like monitor controls and Uninterruptable Power Supplies.
This module supports these devices separately using a separate
event interface on /dev/hidraw.
There is also a /dev/hiddev configuration option in the USB HID
configuration menu. In comparison to hiddev, this device does not process
the hid events at all (no parsing, no lookups). This lets applications
to work on raw hid events when they want to, and avoid using transport-specific
userspace libhid/libusb libraries.
If unsure, say Y.
2012-06-10 17:16:13 +04:00
config UHID
tristate "User-space I/O driver support for HID subsystem"
depends on HID
default n
---help---
Say Y here if you want to provide HID I/O Drivers from user-space.
This allows to write I/O drivers in user-space and feed the data from
the device into the kernel. The kernel parses the HID reports, loads the
corresponding HID Device Driver or provides input devices on top of your
user-space device.
This driver cannot be used to parse HID-reports in user-space and write
special HID-drivers. You should use hidraw for that.
Instead, this driver allows to write the transport-layer driver in
user-space like USB-HID and Bluetooth-HID do in kernel-space.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called uhid.
2012-04-23 14:07:07 +04:00
config HID_GENERIC
tristate "Generic HID driver"
depends on HID
2012-06-25 18:55:41 +04:00
default HID
2012-04-23 14:07:07 +04:00
---help---
2012-06-25 18:55:41 +04:00
Support for generic devices on the HID bus. This includes most
keyboards and mice, joysticks, tablets and digitizers.
2012-04-23 14:07:07 +04:00
To compile this driver as a module, choose M here: the module
will be called hid-generic.
If unsure, say Y.
2012-06-25 18:55:41 +04:00
menu "Special HID drivers"
depends on HID
2008-06-24 01:31:09 +04:00
config HID_A4TECH
2011-01-21 01:44:16 +03:00
tristate "A4 tech mice" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 01:31:09 +04:00
---help---
Support for A4 tech X5 and WOP-35 / Trust 450L mice.
2011-03-11 11:27:34 +03:00
config HID_ACRUX
tristate "ACRUX game controller support"
2013-02-25 14:31:46 +04:00
depends on HID
2011-03-11 11:27:34 +03:00
---help---
Say Y here if you want to enable support for ACRUX game controllers.
config HID_ACRUX_FF
2011-08-04 11:25:56 +04:00
bool "ACRUX force feedback support"
2011-03-11 11:27:34 +03:00
depends on HID_ACRUX
2010-07-19 14:13:23 +04:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you want to enable force feedback support for ACRUX
game controllers.
2008-06-19 01:36:49 +04:00
config HID_APPLE
2011-01-21 01:44:16 +03:00
tristate "Apple {i,Power,Mac}Books" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-19 01:36:49 +04:00
---help---
Support for some Apple devices which less or more break
HID specification.
2008-10-16 03:25:15 +04:00
Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
MacBooks, MacBook Pros and Apple Aluminum.
2008-06-19 01:36:49 +04:00
2013-04-17 20:15:15 +04:00
config HID_APPLEIR
tristate "Apple infrared receiver"
depends on (USB_HID)
---help---
Support for Apple infrared remote control. All the Apple computers from
2005 onwards include such a port, except the unibody Macbook (2009),
and Mac Pros. This receiver is also used in the Apple TV set-top box
prior to the 2010 model.
Say Y here if you want support for Apple infrared remote control.
2012-04-11 02:29:04 +04:00
config HID_AUREAL
tristate "Aureal"
2013-02-25 14:31:45 +04:00
depends on HID
2012-04-11 02:29:04 +04:00
---help---
Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
2008-06-25 01:24:57 +04:00
config HID_BELKIN
2011-01-21 01:44:16 +03:00
tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 01:24:57 +04:00
---help---
Support for Belkin Flip KVM and Wireless keyboard.
2008-06-24 22:42:25 +04:00
config HID_CHERRY
2011-01-21 01:44:16 +03:00
tristate "Cherry Cymotion keyboard" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 22:42:25 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Cherry Cymotion keyboard.
2008-06-24 22:42:25 +04:00
2008-06-25 00:48:52 +04:00
config HID_CHICONY
2011-01-21 01:44:16 +03:00
tristate "Chicony Tactical pad" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 00:48:52 +04:00
---help---
Support for Chicony Tactical pad.
2010-05-12 17:18:59 +04:00
config HID_PRODIKEYS
2010-05-12 17:27:00 +04:00
tristate "Prodikeys PC-MIDI Keyboard support"
2013-02-25 14:31:46 +04:00
depends on HID && SND
2010-05-12 17:18:59 +04:00
select SND_RAWMIDI
---help---
Support for Prodikeys PC-MIDI Keyboard device support.
Say Y here to enable support for this device.
- Prodikeys PC-MIDI keyboard.
The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
input and one MIDI output. These MIDI jacks appear as
a sound "card" in the ALSA sound system.
Note: if you say N here, this device will still function as a basic
multimedia keyboard, but will lack support for the musical keyboard
and some additional multimedia keys.
2014-02-04 22:42:48 +04:00
config HID_CP2112
tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
2014-02-18 12:40:17 +04:00
depends on USB_HID && I2C && GPIOLIB
2014-02-04 22:42:48 +04:00
---help---
Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
This is a HID device driver which registers as an i2c adapter
and gpiochip to expose these functions of the CP2112. The
customizable USB descriptor fields are exposed as sysfs attributes.
2008-06-24 00:54:08 +04:00
config HID_CYPRESS
2011-01-21 01:44:16 +03:00
tristate "Cypress mouse and barcode readers" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 00:54:08 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for cypress mouse and barcode readers.
2008-06-24 00:54:08 +04:00
2009-05-15 17:46:44 +04:00
config HID_DRAGONRISE
2010-08-16 18:26:08 +04:00
tristate "DragonRise Inc. game controller"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-15 17:46:44 +04:00
---help---
2011-01-28 14:50:53 +03:00
Say Y here if you have DragonRise Inc. game controllers.
These might be branded as:
- Tesun USB-703
- Media-tech MT1504 "Rogue"
- DVTech JS19 "Gear"
- Defender Game Master
2009-05-15 17:46:44 +04:00
config DRAGONRISE_FF
2010-08-16 18:26:08 +04:00
bool "DragonRise Inc. force feedback"
2009-05-15 17:46:44 +04:00
depends on HID_DRAGONRISE
2009-03-04 12:12:04 +03:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you want to enable force feedback support for DragonRise Inc.
game controllers.
2010-11-01 22:13:37 +03:00
config HID_EMS_FF
tristate "EMS Production Inc. force feedback support"
2013-02-25 14:31:46 +04:00
depends on HID
2010-11-01 22:13:37 +03:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you want to enable force feedback support for devices by
EMS Production Ltd.
Currently the following devices are known to be supported:
- Trio Linker Plus II
2010-06-28 20:54:25 +04:00
config HID_ELECOM
2010-08-16 18:26:08 +04:00
tristate "ELECOM BM084 bluetooth mouse"
2013-02-25 14:31:45 +04:00
depends on HID
2010-06-28 20:54:25 +04:00
---help---
Support for the ELECOM BM084 (bluetooth mouse).
2013-05-07 13:40:58 +04:00
config HID_ELO
tristate "ELO USB 4000/4500 touchscreen"
depends on USB_HID
---help---
Support for the ELO USB 4000/4500 touchscreens. Note that this is for
different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
2008-06-24 23:11:21 +04:00
config HID_EZKEY
2011-01-21 01:44:16 +03:00
tristate "Ezkey BTC 8193 keyboard" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 23:11:21 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Ezkey BTC 8193 keyboard.
2008-06-24 23:11:21 +04:00
2011-06-27 01:07:31 +04:00
config HID_HOLTEK
2012-07-06 19:05:04 +04:00
tristate "Holtek HID devices"
2011-06-27 01:07:31 +04:00
depends on USB_HID
---help---
2012-07-06 19:05:04 +04:00
Support for Holtek based devices:
- Holtek On Line Grip based game controller
- Trust GXT 18 Gaming Keyboard
2013-05-21 03:31:08 +04:00
- Sharkoon Drakonia / Perixx MX-2000 gaming mice
2013-05-21 03:31:09 +04:00
- Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
Zalman ZM-GM1
2013-10-01 21:22:05 +04:00
- SHARKOON DarkGlider Gaming mouse
2013-10-22 01:42:22 +04:00
- LEETGION Hellion Gaming Mouse
2011-06-27 01:07:31 +04:00
config HOLTEK_FF
bool "Holtek On Line Grip force feedback support"
depends on HID_HOLTEK
select INPUT_FF_MEMLESS
---help---
Say Y here if you have a Holtek On Line Grip based game controller
and want to have force feedback support for it.
2014-06-18 20:05:02 +04:00
config HID_GT683R
tristate "MSI GT68xR LED support"
depends on LEDS_CLASS && USB_HID
---help---
Say Y here if you want to enable support for the three MSI GT68xR LEDs
This driver support following modes:
- Normal: LEDs are fully on when enabled
- Audio: LEDs brightness depends on sound level
- Breathing: LEDs brightness varies at human breathing rate
Currently the following devices are know to be supported:
- MSI GT683R
2013-05-28 16:25:15 +04:00
config HID_HUION
tristate "Huion tablets"
depends on USB_HID
---help---
Support for Huion 580 tablet.
2011-02-17 17:12:45 +03:00
config HID_KEYTOUCH
2011-03-22 12:29:17 +03:00
tristate "Keytouch HID devices"
2013-02-25 14:31:45 +04:00
depends on HID
2011-02-17 17:12:45 +03:00
---help---
Support for Keytouch HID devices not fully compliant with
the specification. Currently supported:
- Keytouch IEC 60945
2009-03-11 13:43:27 +03:00
config HID_KYE
2012-02-28 15:01:46 +04:00
tristate "KYE/Genius devices"
2013-02-25 14:31:46 +04:00
depends on HID
2009-03-11 13:43:27 +03:00
---help---
2012-02-28 15:01:46 +04:00
Support for KYE/Genius devices not fully compliant with HID standard:
- Ergo Mouse
- EasyPen i405X tablet
- MousePen i608X tablet
- EasyPen M610X tablet
2009-03-11 13:43:27 +03:00
2010-08-09 20:44:17 +04:00
config HID_UCLOGIC
2010-08-09 21:56:01 +04:00
tristate "UC-Logic"
2013-02-25 14:31:45 +04:00
depends on HID
2010-08-09 20:44:17 +04:00
---help---
Support for UC-Logic tablets.
2010-08-20 19:21:11 +04:00
config HID_WALTOP
tristate "Waltop"
2013-02-25 14:31:45 +04:00
depends on HID
2010-08-20 19:21:11 +04:00
---help---
Support for Waltop tablets.
2008-07-25 01:35:13 +04:00
config HID_GYRATION
2010-08-16 18:26:08 +04:00
tristate "Gyration remote control"
2013-02-25 14:31:45 +04:00
depends on HID
2008-07-25 01:35:13 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Gyration remote control.
2008-07-25 01:35:13 +04:00
2012-10-31 15:10:10 +04:00
config HID_ICADE
tristate "ION iCade arcade controller"
2013-02-25 14:31:45 +04:00
depends on HID
2012-10-31 15:10:10 +04:00
---help---
Support for the ION iCade arcade controller to work as a joystick.
To compile this driver as a module, choose M here: the
module will be called hid-icade.
2009-07-13 16:19:58 +04:00
config HID_TWINHAN
2010-08-16 18:26:08 +04:00
tristate "Twinhan IR remote control"
2013-02-25 14:31:45 +04:00
depends on HID
2009-07-13 16:19:58 +04:00
---help---
Support for Twinhan IR remote control.
2009-03-04 18:09:40 +03:00
config HID_KENSINGTON
2011-01-21 01:44:16 +03:00
tristate "Kensington Slimblade Trackball" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2009-03-04 18:09:40 +03:00
---help---
Support for Kensington Slimblade Trackball.
2011-02-03 18:41:47 +03:00
config HID_LCPOWER
tristate "LC-Power"
2013-02-25 14:31:45 +04:00
depends on HID
2011-02-03 18:41:47 +03:00
---help---
Support for LC-Power RC1000MCE RF remote control.
2014-07-24 02:30:45 +04:00
config HID_LENOVO
tristate "Lenovo / Thinkpad devices"
2013-09-12 00:12:24 +04:00
depends on HID
2012-06-17 14:52:34 +04:00
select NEW_LEDS
2012-02-15 16:40:43 +04:00
select LEDS_CLASS
---help---
2014-07-24 02:30:45 +04:00
Support for Lenovo devices that are not fully compliant with HID standard.
2012-02-15 16:40:43 +04:00
2014-07-24 02:30:45 +04:00
Say Y if you want support for the non-compliant features of the Lenovo
Thinkpad standalone keyboards, e.g:
- ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
configuration)
2014-07-24 02:30:48 +04:00
- ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
- ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
2012-02-15 16:40:43 +04:00
2008-05-16 13:49:19 +04:00
config HID_LOGITECH
2011-01-21 01:44:16 +03:00
tristate "Logitech devices" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-05-16 13:49:19 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Logitech devices that are not fully compliant with HID standard.
2008-05-16 13:49:19 +04:00
2011-09-15 13:34:49 +04:00
config HID_LOGITECH_DJ
tristate "Logitech Unifying receivers full support"
HID: logitech-dj: add HIDRAW dependency in Kconfig
hid-logitech-dj.c driver needs hidraw to work correctly. Without
hidraw, hid-logitech-dj.c fails during probe() and Logitech
Unifying devices HID reports aren't recognized.
The unifying receiver has 3 usb interfaces. When hid-logitech-dj driver is
loaded, interfaces 0 and 1 are discarded.
Interface 2 consists of a hid class interface with 3 collections, each of
which sports the 'vendor' usage, thus, there is no reason for hid_input to
claim any of them. On the other hand, hidraw has no issue in claiming the
collections, even if they are 'vendor'. As of today, hid-logitech-dj uses
hidraw api to send configuration/control reports to interface 2 of the
Unifying receiver.
Without the hid-logitech-dj driver, interfaces 0 and 1 are claimed by
hid-input, as they correspond to a keyboard and a mouse. But that is not
relevant to the discussion.
[jkosina@suse.cz: make the changelog more verbose, thanks to Nestor]
Signed-off-by: Olivier Gay <ogay@logitech.com>
Signed-off-by: Nestor Lopez Casado <nlopezcasad@logitech.com>
Signed-off-by: Mathieu Meisser <mmeisser@logitech.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2013-12-03 03:17:24 +04:00
depends on HIDRAW
2011-09-15 13:34:49 +04:00
depends on HID_LOGITECH
---help---
Say Y if you want support for Logitech Unifying receivers and devices.
Unifying receivers are capable of pairing up to 6 Logitech compliant
2012-02-13 14:13:03 +04:00
devices to the same receiver. Without this driver it will be handled by
2012-12-27 20:33:02 +04:00
generic USB_HID driver and all incoming events will be multiplexed
2012-02-13 14:13:03 +04:00
into a single mouse and a single keyboard device.
2011-09-15 13:34:49 +04:00
2008-07-05 01:06:45 +04:00
config LOGITECH_FF
2009-05-15 17:46:44 +04:00
bool "Logitech force feedback support"
2008-07-05 01:06:45 +04:00
depends on HID_LOGITECH
select INPUT_FF_MEMLESS
help
Say Y here if you have one of these devices:
- Logitech WingMan Cordless RumblePad
- Logitech WingMan Cordless RumblePad 2
- Logitech WingMan Force 3D
- Logitech Formula Force EX
2009-06-23 14:11:31 +04:00
- Logitech WingMan Formula Force GP
2008-07-05 01:06:45 +04:00
and if you want to enable force feedback for them.
Note: if you say N here, this device will still be supported, but without
force feedback.
config LOGIRUMBLEPAD2_FF
2013-10-07 20:48:12 +04:00
bool "Logitech force feedback support (variant 2)"
2008-07-05 01:06:45 +04:00
depends on HID_LOGITECH
select INPUT_FF_MEMLESS
help
2013-10-07 20:48:12 +04:00
Say Y here if you want to enable force feedback support for:
- Logitech RumblePad
- Logitech Rumblepad 2
- Logitech Formula Vibration Feedback Wheel
2008-07-05 01:06:45 +04:00
2010-01-13 02:25:58 +03:00
config LOGIG940_FF
bool "Logitech Flight System G940 force feedback support"
depends on HID_LOGITECH
select INPUT_FF_MEMLESS
help
Say Y here if you want to enable force feedback support for Logitech
Flight System G940 devices.
2011-08-04 18:24:22 +04:00
config LOGIWHEELS_FF
bool "Logitech wheels configuration and force feedback support"
2010-09-22 15:19:42 +04:00
depends on HID_LOGITECH
select INPUT_FF_MEMLESS
2011-08-10 20:11:10 +04:00
default LOGITECH_FF
2010-09-22 15:19:42 +04:00
help
2011-08-04 18:24:22 +04:00
Say Y here if you want to enable force feedback and range setting
support for following Logitech wheels:
- Logitech Driving Force
- Logitech Driving Force Pro
- Logitech Driving Force GT
- Logitech G25
- Logitech G27
- Logitech MOMO/MOMO 2
- Logitech Formula Force EX
2010-09-22 15:19:42 +04:00
2010-02-06 20:24:36 +03:00
config HID_MAGICMOUSE
2013-04-20 23:13:52 +04:00
tristate "Apple Magic Mouse/Trackpad multi-touch support"
2013-02-25 14:31:45 +04:00
depends on HID
2010-02-06 20:24:36 +03:00
---help---
2013-04-20 23:13:52 +04:00
Support for the Apple Magic Mouse/Trackpad multi-touch.
2010-02-06 20:24:36 +03:00
Say Y here if you want support for the multi-touch features of the
2013-04-20 23:13:52 +04:00
Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
2010-02-06 20:24:36 +03:00
2008-06-20 23:26:11 +04:00
config HID_MICROSOFT
2011-01-21 01:44:16 +03:00
tristate "Microsoft non-fully HID-compliant devices" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-20 23:26:11 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Microsoft devices that are not fully compliant with HID standard.
2008-06-20 23:26:11 +04:00
2008-06-25 02:07:50 +04:00
config HID_MONTEREY
2011-01-21 01:44:16 +03:00
tristate "Monterey Genius KB29E keyboard" if EXPERT
2013-02-25 14:31:45 +04:00
depends on HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 02:07:50 +04:00
---help---
Support for Monterey Genius KB29E.
2011-01-08 01:45:50 +03:00
config HID_MULTITOUCH
tristate "HID Multitouch panels"
2013-02-25 14:31:46 +04:00
depends on HID
2011-01-08 01:45:50 +03:00
---help---
Generic support for HID multitouch panels.
Say Y here if you have one of the following devices:
2011-03-22 19:34:01 +03:00
- 3M PCT touch screens
2011-05-19 16:18:13 +04:00
- ActionStar dual touch panels
2011-12-23 18:40:59 +04:00
- Atmel panels
2011-05-20 17:59:34 +04:00
- Cando dual touch panels
2011-05-27 22:03:47 +04:00
- Chunghwa panels
2011-05-19 16:18:14 +04:00
- CVTouch panels
2011-01-11 18:45:54 +03:00
- Cypress TrueTouch panels
2013-10-26 02:03:49 +04:00
- Elan Microelectronics touch panels
2011-05-19 13:37:29 +04:00
- Elo TouchSystems IntelliTouch Plus panels
2011-05-20 17:59:34 +04:00
- GeneralTouch 'Sensing Win7-TwoFinger' panels
2011-05-19 16:18:15 +04:00
- GoodTouch panels
2011-01-11 18:45:54 +03:00
- Hanvon dual touch panels
2011-05-20 17:59:34 +04:00
- Ilitek dual touch panels
2011-01-31 13:28:22 +03:00
- IrTouch Infrared USB panels
2011-08-16 08:12:09 +04:00
- LG Display panels (Dell ST2220Tc)
2011-05-18 17:27:24 +04:00
- Lumio CrystalTouch panels
2011-04-22 13:51:48 +04:00
- MosArt dual-touch panels
2012-02-14 12:50:33 +04:00
- Panasonic multitouch panels
2011-04-21 18:21:52 +04:00
- PenMount dual touch panels
2012-02-04 20:08:50 +04:00
- Perixx Peripad 701 touchpad
2011-12-15 07:09:06 +04:00
- PixArt optical touch screen
2011-01-11 18:45:54 +03:00
- Pixcir dual touch panels
2011-11-29 16:13:10 +04:00
- Quanta panels
2011-05-20 17:59:34 +04:00
- eGalax dual-touch panels, including the Joojoo and Wetab tablets
2013-10-21 20:38:49 +04:00
- SiS multitouch panels
2011-03-18 16:27:53 +03:00
- Stantum multitouch panels
2011-05-19 16:18:16 +04:00
- Touch International Panels
2011-05-19 16:18:17 +04:00
- Unitec Panels
2013-11-21 13:04:30 +04:00
- Wistron optical touch panels
2011-07-15 12:58:06 +04:00
- XAT optical touch panels
2012-01-05 06:53:46 +04:00
- Xiroku optical touch panels
2012-06-19 16:39:54 +04:00
- Zytronic touch panels
2011-01-08 01:45:50 +03:00
2011-01-11 18:45:54 +03:00
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called hid-multitouch.
2008-11-19 17:54:46 +03:00
config HID_NTRIG
2010-08-16 18:26:08 +04:00
tristate "N-Trig touch screen"
2008-11-19 17:54:46 +03:00
depends on USB_HID
---help---
Support for N-Trig touch screen.
2010-01-21 17:36:52 +03:00
config HID_ORTEK
2011-03-21 15:54:22 +03:00
tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
2013-02-25 14:31:45 +04:00
depends on HID
2010-01-21 17:36:52 +03:00
---help---
2011-03-21 15:54:22 +03:00
There are certain devices which have LogicalMaximum wrong in the keyboard
usage page of their report descriptor. The most prevailing ones so far
are manufactured by Ortek, thus the name of the driver. Currently
supported devices by this driver are
- Ortek PKB-1700
- Ortek WKB-2000
- Skycable wireless presenter
2010-01-21 17:36:52 +03:00
2009-05-15 17:46:44 +04:00
config HID_PANTHERLORD
2010-08-16 18:26:08 +04:00
tristate "Pantherlord/GreenAsia game controller"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-15 17:46:44 +04:00
---help---
Say Y here if you have a PantherLord/GreenAsia based game controller
or adapter.
2008-09-18 21:43:32 +04:00
config PANTHERLORD_FF
bool "Pantherlord force feedback support"
depends on HID_PANTHERLORD
select INPUT_FF_MEMLESS
2009-05-15 17:46:44 +04:00
---help---
2008-09-18 21:43:32 +04:00
Say Y here if you have a PantherLord/GreenAsia based game controller
or adapter and want to enable force feedback support for it.
2014-09-03 12:33:53 +04:00
config HID_PENMOUNT
tristate "Penmount touch device"
depends on USB_HID
---help---
This selects a driver for the PenMount 6000 touch controller.
The driver works around a problem in the report descript allowing
the userspace to touch events instead of mouse events.
Say Y here if you have a Penmount based touch controller.
2008-06-25 01:46:21 +04:00
config HID_PETALYNX
2010-08-16 18:26:08 +04:00
tristate "Petalynx Maxter remote control"
2013-02-25 14:31:45 +04:00
depends on HID
2008-06-25 01:46:21 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Petalynx Maxter remote control.
2008-06-25 01:46:21 +04:00
2010-03-31 00:33:50 +04:00
config HID_PICOLCD
tristate "PicoLCD (graphic version)"
2013-02-25 14:31:47 +04:00
depends on HID
2010-03-31 00:33:50 +04:00
---help---
This provides support for Minibox PicoLCD devices, currently
only the graphical ones are supported.
This includes support for the following device features:
- Keypad
- Switching between Firmware and Flash mode
2010-03-31 00:38:09 +04:00
- EEProm / Flash access (via debugfs)
2010-04-11 14:17:45 +04:00
Features selectively enabled:
- Framebuffer for monochrome 256x64 display
- Backlight control
- Contrast control
- General purpose outputs
2010-03-31 00:34:30 +04:00
Features that are not (yet) supported:
2010-03-31 00:33:50 +04:00
- IR
2010-04-11 14:17:45 +04:00
config HID_PICOLCD_FB
2011-01-21 01:44:16 +03:00
bool "Framebuffer support" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04:00
depends on HID_PICOLCD
depends on HID_PICOLCD=FB || FB=y
select FB_DEFERRED_IO
select FB_SYS_FILLRECT
select FB_SYS_COPYAREA
select FB_SYS_IMAGEBLIT
select FB_SYS_FOPS
---help---
Provide access to PicoLCD's 256x64 monochrome display via a
2012-04-13 19:14:11 +04:00
framebuffer device.
2010-04-11 14:17:45 +04:00
config HID_PICOLCD_BACKLIGHT
2011-01-21 01:44:16 +03:00
bool "Backlight control" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04:00
depends on HID_PICOLCD
depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
---help---
Provide access to PicoLCD's backlight control via backlight
class.
config HID_PICOLCD_LCD
2011-01-21 01:44:16 +03:00
bool "Contrast control" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04:00
depends on HID_PICOLCD
depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
---help---
Provide access to PicoLCD's LCD contrast via lcd class.
config HID_PICOLCD_LEDS
2011-01-21 01:44:16 +03:00
bool "GPO via leds class" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04:00
depends on HID_PICOLCD
depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
---help---
Provide access to PicoLCD's GPO pins via leds class.
2012-07-30 23:38:28 +04:00
config HID_PICOLCD_CIR
bool "CIR via RC class" if EXPERT
default !EXPERT
depends on HID_PICOLCD
depends on HID_PICOLCD=RC_CORE || RC_CORE=y
---help---
Provide access to PicoLCD's CIR interface via remote control (LIRC).
2011-10-15 04:18:54 +04:00
config HID_PRIMAX
2011-10-17 19:04:58 +04:00
tristate "Primax non-fully HID-compliant devices"
2013-02-25 14:31:45 +04:00
depends on HID
2011-10-15 04:18:54 +04:00
---help---
Support for Primax devices that are not fully compliant with the
HID standard.
2010-05-19 20:55:16 +04:00
config HID_ROCCAT
2011-12-29 20:20:14 +04:00
tristate "Roccat device support"
2010-05-19 20:55:16 +04:00
depends on USB_HID
---help---
2011-12-29 20:20:14 +04:00
Support for Roccat devices.
Say Y here if you have a Roccat mouse or keyboard and want
support for its special functionalities.
2010-08-29 14:30:18 +04:00
2012-02-22 05:10:06 +04:00
config HID_SAITEK
tristate "Saitek non-fully HID-compliant devices"
2013-02-25 14:31:45 +04:00
depends on HID
2012-02-22 05:10:06 +04:00
---help---
Support for Saitek devices that are not fully compliant with the
HID standard.
2014-05-20 22:28:00 +04:00
Supported devices:
- PS1000 Dual Analog Pad
- R.A.T.7 Gaming Mouse
- M.M.O.7 Gaming Mouse
2012-02-22 05:10:06 +04:00
2008-06-26 00:31:48 +04:00
config HID_SAMSUNG
2010-08-16 18:26:08 +04:00
tristate "Samsung InfraRed remote control or keyboards"
2013-02-25 14:31:45 +04:00
depends on HID
2008-06-26 00:31:48 +04:00
---help---
2010-05-17 14:42:39 +04:00
Support for Samsung InfraRed remote control or keyboards.
2008-06-26 00:31:48 +04:00
2008-06-26 01:47:04 +04:00
config HID_SONY
2014-02-01 19:39:58 +04:00
tristate "Sony PS2/3/4 accessories"
2008-06-26 01:47:04 +04:00
depends on USB_HID
2013-05-28 13:22:09 +04:00
depends on NEW_LEDS
depends on LEDS_CLASS
2014-02-03 14:17:25 +04:00
select POWER_SUPPLY
2008-06-26 01:47:04 +04:00
---help---
2013-05-28 01:41:05 +04:00
Support for
2012-09-26 01:02:27 +04:00
2013-05-28 01:41:05 +04:00
* Sony PS3 6-axis controllers
2014-02-01 19:39:58 +04:00
* Sony PS4 DualShock 4 controllers
2013-05-28 01:41:05 +04:00
* Buzz controllers
2013-06-13 14:03:49 +04:00
* Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
* Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
2008-06-26 01:47:04 +04:00
2013-11-09 22:25:57 +04:00
config SONY_FF
2014-02-01 19:39:58 +04:00
bool "Sony PS2/3/4 accessories force feedback support"
2013-11-09 22:25:57 +04:00
depends on HID_SONY
select INPUT_FF_MEMLESS
---help---
2014-02-01 19:39:58 +04:00
Say Y here if you have a Sony PS2/3/4 accessory and want to enable
force feedback support for it.
2013-11-09 22:25:57 +04:00
2011-05-27 20:40:29 +04:00
config HID_SPEEDLINK
tristate "Speedlink VAD Cezanne mouse support"
2013-02-25 14:31:46 +04:00
depends on HID
2011-05-27 20:40:29 +04:00
---help---
Support for Speedlink Vicious and Divine Cezanne mouse.
2013-01-31 19:50:24 +04:00
config HID_STEELSERIES
2013-01-31 19:07:07 +04:00
tristate "Steelseries SRW-S1 steering wheel support"
2013-02-25 14:31:46 +04:00
depends on HID
2013-01-31 19:07:07 +04:00
---help---
Support for Steelseries SRW-S1 steering wheel
2008-06-23 23:56:07 +04:00
config HID_SUNPLUS
2010-08-16 18:26:08 +04:00
tristate "Sunplus wireless desktop"
2013-02-25 14:31:45 +04:00
depends on HID
2008-06-23 23:56:07 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Sunplus wireless desktop.
2008-06-23 23:56:07 +04:00
2014-04-07 21:39:33 +04:00
config HID_RMI
tristate "Synaptics RMI4 device support"
depends on HID
---help---
Support for Synaptics RMI4 touchpads.
Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
and want support for its special functionalities.
2009-05-15 17:46:44 +04:00
config HID_GREENASIA
2010-08-16 18:26:08 +04:00
tristate "GreenAsia (Product ID 0x12) game controller support"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-15 17:46:44 +04:00
---help---
Say Y here if you have a GreenAsia (Product ID 0x12) based game
controller or adapter.
config GREENASIA_FF
bool "GreenAsia (Product ID 0x12) force feedback support"
depends on HID_GREENASIA
2008-12-12 00:07:59 +03:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
2009-01-26 13:12:25 +03:00
(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
2008-12-12 00:07:59 +03:00
and want to enable force feedback support for it.
2011-11-23 01:52:15 +04:00
config HID_HYPERV_MOUSE
tristate "Microsoft Hyper-V mouse driver"
depends on HYPERV
---help---
Select this option to enable the Hyper-V mouse driver.
2009-05-13 12:54:38 +04:00
config HID_SMARTJOYPLUS
2010-05-21 15:15:17 +04:00
tristate "SmartJoy PLUS PS2/USB adapter support"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-13 12:54:38 +04:00
---help---
2011-10-21 00:26:21 +04:00
Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
Note that DDR (Dance Dance Revolution) mode is not supported, nor
is pressure sensitive buttons on the pro models.
2009-05-13 12:54:38 +04:00
config SMARTJOYPLUS_FF
bool "SmartJoy PLUS PS2/USB adapter force feedback support"
depends on HID_SMARTJOYPLUS
select INPUT_FF_MEMLESS
---help---
Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
enable force feedback support for it.
2012-02-06 20:36:38 +04:00
config HID_TIVO
HID: add support for tivo slide remote
This patch finishes off adding full support for the TiVo Slide remote,
which is a mostly pure HID device from the perspective of the kernel.
There are a few mappings that use a vendor-specific usage page, and a
few keys in the consumer usage page that I think make sense to remap
slightly, to better fit their key labels' intended use. Doing this in a
stand-alone hid-tivo.c makes the modifications only matter for this
specific device.
What's actually connected to the computer is a Broadcom-made usb dongle,
which has an embedded hub, bluetooth adapter, mouse and keyboard
devices. You pair with the dongle, then the remote sends data that its
converted into HID on the keyboard interface (the mouse interface
doesn't do anything interesting, so far as I can tell).
lsusb for this device:
Bus 004 Device 005: ID 0a5c:2190 Broadcom Corp.
Bus 004 Device 004: ID 0a5c:4503 Broadcom Corp.
Bus 004 Device 003: ID 150a:1201
Bus 004 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Speaking of the keyboard interface, the remote actually does contain a
keyboard as well. The top slides away, revealing a reasonably functional
qwerty keyboard (not unlike many slide cell phones), thus the product
name.
CC: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-10-15 00:57:42 +04:00
tristate "TiVo Slide Bluetooth remote control support"
2013-02-25 14:31:45 +04:00
depends on HID
HID: add support for tivo slide remote
This patch finishes off adding full support for the TiVo Slide remote,
which is a mostly pure HID device from the perspective of the kernel.
There are a few mappings that use a vendor-specific usage page, and a
few keys in the consumer usage page that I think make sense to remap
slightly, to better fit their key labels' intended use. Doing this in a
stand-alone hid-tivo.c makes the modifications only matter for this
specific device.
What's actually connected to the computer is a Broadcom-made usb dongle,
which has an embedded hub, bluetooth adapter, mouse and keyboard
devices. You pair with the dongle, then the remote sends data that its
converted into HID on the keyboard interface (the mouse interface
doesn't do anything interesting, so far as I can tell).
lsusb for this device:
Bus 004 Device 005: ID 0a5c:2190 Broadcom Corp.
Bus 004 Device 004: ID 0a5c:4503 Broadcom Corp.
Bus 004 Device 003: ID 150a:1201
Bus 004 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Speaking of the keyboard interface, the remote actually does contain a
keyboard as well. The top slides away, revealing a reasonably functional
qwerty keyboard (not unlike many slide cell phones), thus the product
name.
CC: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-10-15 00:57:42 +04:00
---help---
Say Y if you have a TiVo Slide Bluetooth remote control.
2009-01-04 02:36:56 +03:00
config HID_TOPSEED
2010-07-14 00:50:51 +04:00
tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
2013-02-25 14:31:45 +04:00
depends on HID
2009-01-04 02:36:56 +03:00
---help---
2010-07-14 00:50:51 +04:00
Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
CLLRCMCE remote control.
2009-01-04 02:36:56 +03:00
2013-01-22 21:01:21 +04:00
config HID_THINGM
tristate "ThingM blink(1) USB RGB LED"
2013-02-25 14:31:45 +04:00
depends on HID
2013-01-22 21:01:21 +04:00
depends on LEDS_CLASS
---help---
Support for the ThingM blink(1) USB RGB LED. This driver registers a
Linux LED class instance, plus additional sysfs attributes to control
RGB colors, fade time and playing. The device is exposed through hidraw
to access other functions.
2009-05-15 17:46:44 +04:00
config HID_THRUSTMASTER
2010-05-21 15:15:17 +04:00
tristate "ThrustMaster devices support"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-15 17:46:44 +04:00
---help---
Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
a THRUSTMASTER Ferrari GT Rumble Wheel.
config THRUSTMASTER_FF
bool "ThrustMaster devices force feedback support"
depends on HID_THRUSTMASTER
2008-09-18 14:23:31 +04:00
select INPUT_FF_MEMLESS
2009-05-15 17:46:44 +04:00
---help---
2009-06-29 11:41:29 +04:00
Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
Rumble Force or Force Feedback Wheel.
2008-09-18 14:23:31 +04:00
2009-05-11 19:18:12 +04:00
config HID_WACOM
2014-07-25 00:10:09 +04:00
tristate "Wacom Intuos/Graphire tablet support (USB)"
2013-02-25 14:31:45 +04:00
depends on HID
2010-03-15 22:16:23 +03:00
select POWER_SUPPLY
2014-07-25 00:10:09 +04:00
select NEW_LEDS
select LEDS_CLASS
help
2014-08-07 01:06:26 +04:00
Say Y here if you want to use the USB or BT version of the Wacom Intuos
2014-07-25 00:10:09 +04:00
or Graphire tablet.
To compile this driver as a module, choose M here: the
module will be called wacom.
2010-03-15 22:16:23 +03:00
2011-07-05 15:45:08 +04:00
config HID_WIIMOTE
2013-05-06 01:12:45 +04:00
tristate "Nintendo Wii / Wii U peripherals"
2013-02-25 14:31:45 +04:00
depends on HID
2011-08-17 13:43:22 +04:00
depends on LEDS_CLASS
2011-09-06 15:50:39 +04:00
select POWER_SUPPLY
2011-12-08 00:33:59 +04:00
select INPUT_FF_MEMLESS
2011-07-05 15:45:08 +04:00
---help---
2013-05-06 01:12:45 +04:00
Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
devices are the Wii Remote and its extension devices, but also devices
based on the Wii Remote like the Wii U Pro Controller or the
Wii Balance Board.
2011-07-05 15:45:08 +04:00
2013-05-06 01:12:45 +04:00
Support for all official Nintendo extensions is available, however, 3rd
party extensions might not be supported. Please report these devices to:
http://github.com/dvdhrm/xwiimote/issues
Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
the Wii U Gamepad) might be supported in the future. But currently
support is limited to Bluetooth based devices.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called hid-wiimote.
2011-11-17 17:12:01 +04:00
2013-07-27 21:20:02 +04:00
config HID_XINMO
tristate "Xin-Mo non-fully compliant devices"
depends on HID
---help---
Support for Xin-Mo devices that are not fully compliant with the HID
2014-06-11 01:35:36 +04:00
standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
2013-07-27 21:20:02 +04:00
if you have a Xin-Mo Dual Arcade controller.
2009-05-15 17:46:44 +04:00
config HID_ZEROPLUS
2010-05-21 15:15:17 +04:00
tristate "Zeroplus based game controller support"
2013-02-25 14:31:46 +04:00
depends on HID
2009-05-15 17:46:44 +04:00
---help---
2008-09-18 14:23:32 +04:00
Say Y here if you have a Zeroplus based game controller.
2009-05-15 17:46:44 +04:00
config ZEROPLUS_FF
bool "Zeroplus based game controller force feedback support"
depends on HID_ZEROPLUS
select INPUT_FF_MEMLESS
---help---
Say Y here if you have a Zeroplus based game controller and want
to have force feedback support for it.
2010-05-14 20:30:59 +04:00
config HID_ZYDACRON
2010-05-21 15:15:17 +04:00
tristate "Zydacron remote control support"
2013-02-25 14:31:45 +04:00
depends on HID
2010-05-14 20:30:59 +04:00
---help---
Support for Zydacron remote control.
2012-09-05 16:56:00 +04:00
config HID_SENSOR_HUB
tristate "HID Sensors framework support"
2014-06-10 16:04:58 +04:00
depends on HID && HAS_IOMEM
2012-09-05 16:56:00 +04:00
select MFD_CORE
default n
2013-03-05 12:49:01 +04:00
---help---
2012-09-05 16:56:00 +04:00
Support for HID Sensor framework. This creates a MFD instance
for a sensor hub and identifies all the sensors connected to it.
Each sensor is registered as a MFD cell, so that sensor specific
processing can be done in a separate driver. Each sensor
drivers can use the service provided by this driver to register
for events and handle data streams. Each sensor driver can format
data and present to user mode using input or IIO interface.
2008-05-16 13:49:19 +04:00
endmenu
2012-06-25 18:55:41 +04:00
endif # HID
source "drivers/hid/usbhid/Kconfig"
2012-11-12 18:42:59 +04:00
source "drivers/hid/i2c-hid/Kconfig"
2012-06-25 18:55:41 +04:00
endmenu