Changeset cac458f in mainline for uspace/srv/hid/input/ctl/gxe_fb.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/gxe_fb.c
r79506d6 rcac458f 44 44 #include <stroke.h> 45 45 46 static void gxe_fb_ctl_parse _scancode(int);46 static void gxe_fb_ctl_parse(sysarg_t); 47 47 static int gxe_fb_ctl_init(kbd_dev_t *); 48 static void gxe_fb_ctl_set_ind(kbd_dev_t *, unsigned );48 static void gxe_fb_ctl_set_ind(kbd_dev_t *, unsigned int); 49 49 50 50 kbd_ctl_ops_t gxe_fb_ctl = { 51 .parse _scancode = gxe_fb_ctl_parse_scancode,51 .parse = gxe_fb_ctl_parse, 52 52 .init = gxe_fb_ctl_init, 53 53 .set_ind = gxe_fb_ctl_set_ind … … 229 229 } 230 230 231 static void gxe_fb_ctl_parse _scancode(int scancode)231 static void gxe_fb_ctl_parse(sysarg_t scancode) 232 232 { 233 233 unsigned mods, key;
Note:
See TracChangeset
for help on using the changeset viewer.