Changeset 97e87de in mainline for uspace/drv/uhci-hcd/uhci.c
- Timestamp:
- 2011-02-04T13:30:25Z (12 years ago)
- Branches:
- lfn, master, serial
- Children:
- 881c47b
- Parents:
- 74d6e90
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.c
r74d6e90 r97e87de 156 156 } 157 157 158 if (transfer_type == USB_TRANSFER_INTERRUPT 159 && size >= 64) { 160 usb_log_warning("Interrupt transfer too big %zu.\n", size); 161 return ENOTSUP; 162 } 163 164 158 165 if (size >= 1024) { 159 166 usb_log_warning("Transfer too big.\n"); … … 211 218 &instance->transfers[i], it ? "SOMETHING" : "EMPTY"); 212 219 213 if (it)214 usb_log_debug("First in queue: %p (%x).\n",215 it, it->status);220 if (it) 221 usb_log_debug("First in queue: %p (%x).\n", 222 it, it->status); 216 223 217 224 while (instance->transfers[i].first &&
Note: See TracChangeset
for help on using the changeset viewer.