Changes in uspace/lib/usbvirt/src/ipc_hc.c [79ae36dd:50b581d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/src/ipc_hc.c
r79ae36dd r50b581d 38 38 #include <assert.h> 39 39 #include <async.h> 40 #include <devman.h>41 40 #include <usbvirt/device.h> 42 41 #include <usbvirt/ipc.h> … … 81 80 if (rc != EOK) { 82 81 async_exchange_end(exch); 83 async_ wait_for(opening_request, NULL);82 async_forget(opening_request); 84 83 return rc; 85 84 } … … 92 91 93 92 if (data_request == 0) { 94 async_ wait_for(opening_request, NULL);93 async_forget(opening_request); 95 94 return ENOMEM; 96 95 } … … 154 153 if (rc != EOK) { 155 154 async_exchange_end(exch); 156 async_ wait_for(opening_request, NULL);155 async_forget(opening_request); 157 156 return rc; 158 157 } … … 162 161 if (rc != EOK) { 163 162 async_exchange_end(exch); 164 async_ wait_for(opening_request, NULL);163 async_forget(opening_request); 165 164 return rc; 166 165 } … … 227 226 228 227 if (data_request == 0) { 229 async_ wait_for(opening_request, NULL);228 async_forget(opening_request); 230 229 return ENOMEM; 231 230 } … … 302 301 303 302 if (rc != EOK) { 304 async_ wait_for(opening_request, NULL);303 async_forget(opening_request); 305 304 return rc; 306 305 }
Note:
See TracChangeset
for help on using the changeset viewer.