Files
linux-legacy/arch/arm/include/asm/mach/keypad.h
Rob Herring be0524d38f ENGR00117389 Port 5.0.0 release to 2.6.31
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>
2010-08-10 11:44:41 -05:00

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_ */