Changeset 3be9d10 in mainline for uspace/drv/char/ns8250
- Timestamp:
- 2018-03-21T21:29:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e242d2
- Parents:
- eadaeae8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
readaeae8 r3be9d10 311 311 static errno_t ns8250_open(chardev_srvs_t *, chardev_srv_t *); 312 312 static errno_t ns8250_close(chardev_srv_t *); 313 static void ns8250_default_handler(chardev_srv_t *, ipc_callid_t, ipc_call_t *);313 static void ns8250_default_handler(chardev_srv_t *, cap_call_handle_t, ipc_call_t *); 314 314 315 315 /** The character interface's callbacks. */ … … 322 322 }; 323 323 324 static void ns8250_char_conn( ipc_callid_t, ipc_call_t *, void *);324 static void ns8250_char_conn(cap_call_handle_t, ipc_call_t *, void *); 325 325 326 326 static errno_t ns8250_dev_add(ddf_dev_t *dev); … … 1068 1068 * Configure the parameters of the serial communication. 1069 1069 */ 1070 static void ns8250_default_handler(chardev_srv_t *srv, ipc_callid_t callid,1070 static void ns8250_default_handler(chardev_srv_t *srv, cap_call_handle_t callid, 1071 1071 ipc_call_t *call) 1072 1072 { … … 1099 1099 } 1100 1100 1101 void ns8250_char_conn( ipc_callid_t iid, ipc_call_t *icall, void *arg)1101 void ns8250_char_conn(cap_call_handle_t iid, ipc_call_t *icall, void *arg) 1102 1102 { 1103 1103 ns8250_t *ns8250 = fun_ns8250((ddf_fun_t *)arg);
Note:
See TracChangeset
for help on using the changeset viewer.