Changeset 92900e2 in mainline for uspace/drv/bus/usb/ehci/ehci_rh.c
- Timestamp:
- 2015-06-28T23:33:27Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c86ca9a
- Parents:
- 1329dc0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_rh.c
r1329dc0 r92900e2 36 36 #include <errno.h> 37 37 #include <mem.h> 38 #include <str_error.h> 38 39 #include <sys/types.h> 39 40 … … 145 146 batch->buffer, batch->buffer_size, &batch->transfered_size); 146 147 if (batch->error == ENAK) { 148 usb_log_debug("EHCI RH(%p): BATCH(%p) adding as unfinished\n", 149 instance, batch); 147 150 /* This is safe because only status change interrupt transfers 148 151 * return NAK. The assertion holds true because the batch … … 153 156 usb_transfer_batch_finish(batch, NULL); 154 157 usb_transfer_batch_destroy(batch); 158 usb_log_debug("EHCI RH(%p): BATCH(%p) virtual request: %s\n", 159 instance, batch, str_error(batch->error)); 155 160 } 156 161 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.