mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
0f1142a514
This patch allows us to drop the OMAP dependency from the OMAP4 keypad driver. Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Sourav Poddar <sourav.poddar@ti.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
13 lines
265 B
C
13 lines
265 B
C
#ifndef __LINUX_INPUT_OMAP4_KEYPAD_H
|
|
#define __LINUX_INPUT_OMAP4_KEYPAD_H
|
|
|
|
#include <linux/input/matrix_keypad.h>
|
|
|
|
struct omap4_keypad_platform_data {
|
|
const struct matrix_keymap_data *keymap_data;
|
|
|
|
u8 rows;
|
|
u8 cols;
|
|
};
|
|
|
|
#endif /* __LINUX_INPUT_OMAP4_KEYPAD_H */
|