Changeset ce79069b in mainline for uspace/lib/drv/generic/remote_char.c
- Timestamp:
- 2011-01-09T17:02:19Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a6e11
- Parents:
- f724e82
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_char.c
rf724e82 rce79069b 46 46 47 47 /** Remote character interface operations. */ 48 static remote_iface_func_ptr_t remote_char_iface_ops 48 static remote_iface_func_ptr_t remote_char_iface_ops[] = { 49 49 &remote_char_read, 50 50 &remote_char_write … … 74 74 remote_char_read(device_t *dev, void *iface, ipc_callid_t callid, 75 75 ipc_call_t *call) 76 { 76 { 77 77 char_iface_t *char_iface = (char_iface_t *) iface; 78 78 ipc_callid_t cid; … … 136 136 ipc_answer_0(callid, ENOTSUP); 137 137 return; 138 } 138 } 139 139 140 140 if (len > MAX_CHAR_RW_COUNT)
Note:
See TracChangeset
for help on using the changeset viewer.