Changeset cac458f in mainline for uspace/srv/hid/input/ctl/stty.c
- Timestamp:
- 2011-06-22T01:59:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41e2118
- Parents:
- 79506d6 (diff), f1fae414 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/ctl/stty.c
r79506d6 rcac458f 33 33 /** 34 34 * @file 35 * @brief 35 * @brief Serial TTY-like keyboard controller driver. 36 36 */ 37 37 … … 43 43 #include <stroke.h> 44 44 45 static void stty_ctl_parse _scancode(int);45 static void stty_ctl_parse(sysarg_t); 46 46 static int stty_ctl_init(kbd_dev_t *); 47 static void stty_ctl_set_ind(kbd_dev_t *, unsigned );47 static void stty_ctl_set_ind(kbd_dev_t *, unsigned int); 48 48 49 49 kbd_ctl_ops_t stty_ctl = { 50 .parse _scancode = stty_ctl_parse_scancode,50 .parse = stty_ctl_parse, 51 51 .init = stty_ctl_init, 52 52 .set_ind = stty_ctl_set_ind … … 228 228 } 229 229 230 static void stty_ctl_parse _scancode(int scancode)230 static void stty_ctl_parse(sysarg_t scancode) 231 231 { 232 232 unsigned mods, key;
Note:
See TracChangeset
for help on using the changeset viewer.