mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
f67df6c670
The mux settings for keypad are done for omap4430sdp in board file. Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com> [tony@atomide.com: improved formatting a bit] Signed-off-by: Tony Lindgren <tony@atomide.com>
16 lines
329 B
C
16 lines
329 B
C
#ifndef ARCH_ARM_PLAT_OMAP4_KEYPAD_H
|
|
#define ARCH_ARM_PLAT_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;
|
|
};
|
|
|
|
extern int omap4_keyboard_init(struct omap4_keypad_platform_data *,
|
|
struct omap_board_data *);
|
|
#endif
|