Changes in uspace/lib/usbhid/src/hidiface.c [d87561c:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hidiface.c
rd87561c r79ae36dd 33 33 * Client functions for accessing USB HID interface (implementation). 34 34 */ 35 36 35 #include <dev_iface.h> 37 36 #include <usbhid_iface.h> … … 90 89 return EINVAL; 91 90 92 if ( buf == NULL)91 if ((buf == NULL)) 93 92 return ENOMEM; 94 93 … … 121 120 122 121 if (data_request == 0) { 123 async_ forget(opening_request);122 async_wait_for(opening_request, NULL); 124 123 free(buffer); 125 124 return ENOMEM; … … 184 183 return EINVAL; 185 184 186 if ( buf == NULL)185 if ((buf == NULL)) 187 186 return ENOMEM; 188 187 … … 207 206 208 207 if (data_request == 0) { 209 async_ forget(opening_request);208 async_wait_for(opening_request, NULL); 210 209 return ENOMEM; 211 210 }
Note:
See TracChangeset
for help on using the changeset viewer.