Commit 00b8ac409cad653137f087e3ff69c020174cbc15
Committed by
Dmitry Torokhov
1 parent
c413ec4461
Exists in
master
and in
7 other branches
Input: dm355evm_keys - fix kconfig symbol names
The keypad driver for the DM355 EVM got slightly broken as it merged, since it moved from input/keyboard to input/misc and its Kconfig symbol changed. This patch copes with the changed Kconfig symbol. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Showing 1 changed file with 1 additions and 2 deletions Side-by-side Diff
drivers/mfd/dm355evm_msp.c
... | ... | @@ -32,8 +32,7 @@ |
32 | 32 | * This driver was tested with firmware revision A4. |
33 | 33 | */ |
34 | 34 | |
35 | -#if defined(CONFIG_KEYBOARD_DM355EVM) \ | |
36 | - || defined(CONFIG_KEYBOARD_DM355EVM_MODULE) | |
35 | +#if defined(CONFIG_INPUT_DM355EVM) || defined(CONFIG_INPUT_DM355EVM_MODULE) | |
37 | 36 | #define msp_has_keyboard() true |
38 | 37 | #else |
39 | 38 | #define msp_has_keyboard() false |