Changes in uspace/drv/char/pc-lpt/pc-lpt.c [10b21a1b:f2d88f3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/pc-lpt/pc-lpt.c
r10b21a1b rf2d88f3 45 45 static void pc_lpt_connection(ipc_call_t *, void *); 46 46 47 static errno_t pc_lpt_read(chardev_srv_t *, void *, size_t, size_t *); 47 static errno_t pc_lpt_read(chardev_srv_t *, void *, size_t, size_t *, 48 chardev_flags_t); 48 49 static errno_t pc_lpt_write(chardev_srv_t *, const void *, size_t, size_t *); 49 50 … … 224 225 /** Read from pc-lpt device */ 225 226 static errno_t pc_lpt_read(chardev_srv_t *srv, void *buf, size_t size, 226 size_t *nread )227 size_t *nread, chardev_flags_t flags) 227 228 { 228 229 pc_lpt_t *lpt = (pc_lpt_t *) srv->srvs->sarg;
Note:
See TracChangeset
for help on using the changeset viewer.