mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 14:26:39 +07:00
4f5433324d
Otherwise we'll get compile errors like: arch/arm/plat-omap/include/mach/keypad.h:38:1: warning: "KEY" redefined arch/arm/plat-omap/include/mach/keypad.h:39:1: warning: "PERSISTENT_KEY" redefined ... Signed-off-by: Tony Lindgren <tony@atomide.com>
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*
|
|
* arch/arm/plat-omap/include/mach/keypad.h
|
|
*
|
|
* Copyright (C) 2006 Komal Shah <komal_shah802003@yahoo.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
#ifndef ASMARM_ARCH_KEYPAD_H
|
|
#define ASMARM_ARCH_KEYPAD_H
|
|
|
|
#include <linux/input/matrix_keypad.h>
|
|
|
|
struct omap_kp_platform_data {
|
|
int rows;
|
|
int cols;
|
|
int *keymap;
|
|
unsigned int keymapsize;
|
|
unsigned int rep:1;
|
|
unsigned long delay;
|
|
unsigned int dbounce:1;
|
|
/* specific to OMAP242x*/
|
|
unsigned int *row_gpios;
|
|
unsigned int *col_gpios;
|
|
};
|
|
|
|
/* Group (0..3) -- when multiple keys are pressed, only the
|
|
* keys pressed in the same group are considered as pressed. This is
|
|
* in order to workaround certain crappy HW designs that produce ghost
|
|
* keypresses. */
|
|
#define GROUP_0 (0 << 16)
|
|
#define GROUP_1 (1 << 16)
|
|
#define GROUP_2 (2 << 16)
|
|
#define GROUP_3 (3 << 16)
|
|
#define GROUP_MASK GROUP_3
|
|
|
|
#define KEY_PERSISTENT 0x00800000
|
|
#define KEYNUM_MASK 0x00EFFFFF
|
|
|
|
#endif
|
|
|