From: Sergei Kolzun Date: Thu, 4 Aug 2011 07:25:56 +0000 (-0700) Subject: HID: ACRUX - fix enabling force feedback support X-Git-Tag: v3.0.9~200 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5b81a5e1aee86808849307d5e025185ee5bde276;p=karo-tx-linux.git 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 Signed-off-by: Dmitry Torokhov Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 36ca465c00ce..a1f3c0ddd019 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -69,7 +69,7 @@ config HID_ACRUX Say Y here if you want to enable support for ACRUX game controllers. config HID_ACRUX_FF - tristate "ACRUX force feedback support" + bool "ACRUX force feedback support" depends on HID_ACRUX select INPUT_FF_MEMLESS ---help---