Changeset 1433ecda in mainline for uspace/lib/drv/generic
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- Location:
- uspace/lib/drv/generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/logbuf.c
r47b2d7e3 r1433ecda 195 195 if (print_remainder && (index < items)) { 196 196 size_t s = str_size(dump); 197 snprintf(dump + s, dump_size - s ,REMAINDER_STR_FMT,197 snprintf(dump + s, dump_size - s, REMAINDER_STR_FMT, 198 198 items - index); 199 199 } -
uspace/lib/drv/generic/remote_audio_mixer.c
r47b2d7e3 r1433ecda 106 106 /* Make the other side fail 107 107 * as it waits for read request */ 108 async_data_read_start(exch, (void *)-1, 0);108 async_data_read_start(exch, (void *)-1, 0); 109 109 return ENOMEM; 110 110 } … … 143 143 /* Make the other side fail 144 144 * as it waits for read request */ 145 async_data_read_start(exch, (void *)-1, 0);145 async_data_read_start(exch, (void *)-1, 0); 146 146 return ENOMEM; 147 147 } -
uspace/lib/drv/generic/remote_hw_res.c
r47b2d7e3 r1433ecda 124 124 125 125 hw_resource_list_t *hw_resources = hw_res_ops->get_resource_list(fun); 126 if (hw_resources == NULL) {126 if (hw_resources == NULL) { 127 127 async_answer_0(chandle, ENOENT); 128 128 return;
Note:
See TracChangeset
for help on using the changeset viewer.