diff options
author | Sergei Kolzun <x0r@dv-life.ru> | 2011-08-04 03:25:56 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-11 12:35:45 -0500 |
commit | 5b81a5e1aee86808849307d5e025185ee5bde276 (patch) | |
tree | 9dabaf216f4fc39fe0c6f2247df3bdce9c2fc252 | |
parent | 07bb3623343d8060b6f68aa294e3ecb9391a82d4 (diff) |
HID: ACRUX - fix enabling force feedback support
commit 364b936fc38dec7653c690d710e10657af235a36 upstream.
The config option needs to be a 'bool' and not a tristate, otheriwse
force feedback support never makes it into the module.
Signed-off-by: Sergei Kolzun <x0r@dv-life.ru>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/hid/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 36ca465c00c..a1f3c0ddd01 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig | |||
@@ -69,7 +69,7 @@ config HID_ACRUX | |||
69 | Say Y here if you want to enable support for ACRUX game controllers. | 69 | Say Y here if you want to enable support for ACRUX game controllers. |
70 | 70 | ||
71 | config HID_ACRUX_FF | 71 | config HID_ACRUX_FF |
72 | tristate "ACRUX force feedback support" | 72 | bool "ACRUX force feedback support" |
73 | depends on HID_ACRUX | 73 | depends on HID_ACRUX |
74 | select INPUT_FF_MEMLESS | 74 | select INPUT_FF_MEMLESS |
75 | ---help--- | 75 | ---help--- |