Input: pxa27x-keypad - use matrix_keymap for matrix keys
pxa27x-keypad includes matrix keys. Make use of matrix_keymap for the matrix keys. Signed-off-by: Chao Xie <chao.xie@marvell.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:

committed by
Dmitry Torokhov

parent
483180281f
commit
0a085a9482
@@ -173,7 +173,7 @@ static inline void palmld_nor_init(void) {}
|
||||
* GPIO keyboard
|
||||
******************************************************************************/
|
||||
#if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
|
||||
static unsigned int palmld_matrix_keys[] = {
|
||||
static const unsigned int palmld_matrix_keys[] = {
|
||||
KEY(0, 1, KEY_F2),
|
||||
KEY(0, 2, KEY_UP),
|
||||
|
||||
@@ -190,11 +190,15 @@ static unsigned int palmld_matrix_keys[] = {
|
||||
KEY(3, 2, KEY_LEFT),
|
||||
};
|
||||
|
||||
static struct matrix_keymap_data palmld_matrix_keymap_data = {
|
||||
.keymap = palmld_matrix_keys,
|
||||
.keymap_size = ARRAY_SIZE(palmld_matrix_keys),
|
||||
};
|
||||
|
||||
static struct pxa27x_keypad_platform_data palmld_keypad_platform_data = {
|
||||
.matrix_key_rows = 4,
|
||||
.matrix_key_cols = 3,
|
||||
.matrix_key_map = palmld_matrix_keys,
|
||||
.matrix_key_map_size = ARRAY_SIZE(palmld_matrix_keys),
|
||||
.matrix_keymap_data = &palmld_matrix_keymap_data,
|
||||
|
||||
.debounce_interval = 30,
|
||||
};
|
||||
|
Reference in New Issue
Block a user