Changeset a46e56b in mainline for uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
r3e242d2 ra46e56b 113 113 114 114 /** Character device connection handler. */ 115 static void s3c24xx_uart_connection(cap_call_handle_t i id, ipc_call_t *icall,115 static void s3c24xx_uart_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, 116 116 void *arg) 117 117 { 118 118 s3c24xx_uart_t *uart = (s3c24xx_uart_t *) arg; 119 119 120 chardev_conn(i id, icall, &uart->cds);120 chardev_conn(icall_handle, icall, &uart->cds); 121 121 } 122 122
Note:
See TracChangeset
for help on using the changeset viewer.