Changes in uspace/lib/drv/generic/remote_ahci.c [58563585:7f620e8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_ahci.c
r58563585 r7f620e8 72 72 73 73 if ((devn_size > 5) && (str_lcmp(devn, "ahci_", 5) == 0)) { 74 async_sess_t *sess = devman_device_connect(funh, IPC_FLAG_BLOCKING); 74 async_sess_t *sess = devman_device_connect(EXCHANGE_PARALLEL, 75 funh, IPC_FLAG_BLOCKING); 75 76 76 77 if (sess) { … … 222 223 223 224 char* sata_dev_name = malloc(sata_dev_name_length); 224 if (sata_dev_name == NULL) {225 async_answer_0(callid, ENOMEM);226 return;227 }228 225 229 226 const int ret = ahci_iface->get_sata_device_name(fun, … … 236 233 async_data_read_finalize(cid, sata_dev_name, sata_dev_name_length); 237 234 238 free(sata_dev_name);239 235 async_answer_0(callid, ret); 240 236 }
Note:
See TracChangeset
for help on using the changeset viewer.