Changes in uspace/srv/hid/input/ctl/pc.c [60e5a856:1875a0c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/ctl/pc.c
r60e5a856 r1875a0c 43 43 #include <gsp.h> 44 44 45 static void pc_ctl_parse _scancode(int);45 static void pc_ctl_parse(sysarg_t); 46 46 static int pc_ctl_init(kbd_dev_t *); 47 static void pc_ctl_set_ind(kbd_dev_t *, unsigned );47 static void pc_ctl_set_ind(kbd_dev_t *, unsigned int); 48 48 49 49 kbd_ctl_ops_t pc_ctl = { 50 .parse _scancode = pc_ctl_parse_scancode,50 .parse = pc_ctl_parse, 51 51 .init = pc_ctl_init, 52 52 .set_ind = pc_ctl_set_ind … … 215 215 } 216 216 217 static void pc_ctl_parse _scancode(int scancode)217 static void pc_ctl_parse(sysarg_t scancode) 218 218 { 219 219 kbd_event_type_t type; … … 257 257 } 258 258 259 if ((s cancode < 0) || ((size_t) scancode >= map_length))259 if ((size_t) scancode >= map_length) 260 260 return; 261 261 262 262 key = map[scancode]; 263 263 if (key != 0) 264 kbd_push_ev (kbd_dev, type, key);264 kbd_push_event(kbd_dev, type, key); 265 265 } 266 266
Note:
See TracChangeset
for help on using the changeset viewer.