mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 20:25:28 +07:00
14 lines
265 B
C
14 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 */
|