mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-09-23 15:15:32 +00:00
This is i.MX BSP 5.0.0 release ported to 2.6.31 Signed-off-by: Rob Herring <r.herring@freescale.com> Signed-off-by: Alan Tull <r80115@freescale.com> Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com>
29 lines
566 B
C
29 lines
566 B
C
/*
|
|
* include/asm-arm/mach/keypad.h
|
|
*
|
|
* Generic Keypad struct
|
|
*
|
|
* Author: Armin Kuster <Akuster@mvista.com>
|
|
*
|
|
* 2005 (c) MontaVista Software, Inc. This file is licensed under
|
|
* the terms of the GNU General Public License version 2. This program
|
|
* is licensed "as is" without any warranty of any kind, whether express
|
|
* or implied.
|
|
*/
|
|
|
|
#ifndef __ASM_MACH_KEYPAD_H_
|
|
#define __ASM_MACH_KEYPAD_H_
|
|
|
|
#include <linux/input.h>
|
|
|
|
struct keypad_data {
|
|
u16 rowmax;
|
|
u16 colmax;
|
|
u32 irq;
|
|
u16 delay;
|
|
u16 learning;
|
|
u16 *matrix;
|
|
};
|
|
|
|
#endif /* __ARM_MACH_KEYPAD_H_ */
|