#ifndef foorcmserverkeymaphfoo #define foorcmserverkeymaphfoo struct keycode { char *name; char *value; }; struct keymap { char *name; uint16_t rows; uint16_t cols; struct list_head list; struct keycode keycodes[]; }; struct keymap *find_keymap_by_name(struct device *dev, const char *name); int keymaps_load(struct device *device); #endif