Changeset 15c5418 in mainline for uspace/drv/hid/xtkbd/xtkbd.h
- Timestamp:
- 2017-11-18T20:06:15Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75fcf9b
- Parents:
- efb9fd08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/xtkbd/xtkbd.h
refb9fd08 r15c5418 1 1 /* 2 2 * Copyright (c) 2011 Jan Vesely 3 * Copyright (c) 2017 Jiri Svoboda 3 4 * All rights reserved. 4 5 * … … 34 35 */ 35 36 36 #ifndef _XT_KBD_H_37 #define _XT_KBD_H_37 #ifndef XT_KBD_H_ 38 #define XT_KBD_H_ 38 39 40 #include <async.h> 39 41 #include <ddf/driver.h> 40 42 #include <fibril.h> 43 #include <io/chardev.h> 41 44 42 /** PC/XT keyboard driver structure .*/45 /** PC/XT keyboard driver structure */ 43 46 typedef struct { 44 ddf_fun_t *kbd_fun; /**< Keyboard function. */ 45 async_sess_t *parent_sess; /**< Connection to device providing data. */ 46 async_sess_t *client_sess; /**< Callback connection to client. */ 47 fid_t polling_fibril; /**< Fibril retrieving an parsing data. */ 47 /** Keyboard function */ 48 ddf_fun_t *kbd_fun; 49 /** Device providing keyboard connection */ 50 chardev_t *chardev; 51 /** Callback connection to client */ 52 async_sess_t *client_sess; 53 /** Fibril retrieving an parsing data */ 54 fid_t polling_fibril; 48 55 } xt_kbd_t; 49 56
Note:
See TracChangeset
for help on using the changeset viewer.