From: Jinsung Yang <jsgood.yang@xxxxxxxxxxx> This patch supports platform data definition which including platform specific keymap. Signed-off-by: Jinsung Yang <jsgood.yang@xxxxxxxxxxx> Signed-off-by: Kyeongil Kim <ki0351.kim@xxxxxxxxxxx> --- arch/arm/plat-s3c/include/plat/keypad.h | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) create mode 100644 arch/arm/plat-s3c/include/plat/keypad.h diff --git a/arch/arm/plat-s3c/include/plat/keypad.h b/arch/arm/plat-s3c/include/plat/keypad.h new file mode 100644 index 0000000..51c7396 --- /dev/null +++ b/arch/arm/plat-s3c/include/plat/keypad.h @@ -0,0 +1,27 @@ +/* + * linux/arch/arm/plat-s3c/include/plat/keypad.h + * + * Copyright (C) 2009 Samsung Electronics + * + * Header file for keypad platform data + * + * 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 __ASM_PLAT_S3C_KEYPAD_H +#define __ASM_PLAT_S3C_KEYPAD_H + +struct s3c_platform_keypad { + int nr_rows; + int nr_cols; + int max_keys; + int max_masks; + int delay; + unsigned short *keymap; +}; + +extern void s3c_keypad_set_platdata(struct s3c_platform_keypad *pd); + +#endif /* __ASM_PLAT_S3C_KEYPAD_H */ -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html