Changeset feabe163 in mainline for uspace/drv/bus/usb/xhci/commands.c


Ignore:
Timestamp:
2018-01-17T17:05:04Z (6 years ago)
Author:
Salmelu <salmelu@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ed8575f
Parents:
4cc0c2e0
Message:

xhci: common transfer errors detected and logged

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/commands.c

    r4cc0c2e0 rfeabe163  
    746746        case XHCI_TRBC_USB_TRANSACTION_ERROR:
    747747                return ESTALL;
     748        case XHCI_TRBC_RESOURCE_ERROR:
     749        case XHCI_TRBC_BANDWIDTH_ERROR:
     750        case XHCI_TRBC_NO_SLOTS_ERROR:
     751                return ELIMIT;
     752        case XHCI_TRBC_SLOT_NOT_ENABLED_ERROR:
     753                return ENOENT;
    748754        default:
    749755                return EINVAL;
Note: See TracChangeset for help on using the changeset viewer.