Changeset 9348862 in mainline for uspace/drv/bus/usb/uhci/uhci.c
- Timestamp:
- 2013-09-21T00:43:24Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4cf5b8e0
- Parents:
- 3f03199
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/uhci.c
r3f03199 r9348862 57 57 assert(dev); 58 58 hcd_t *hcd = dev_to_hcd(dev); 59 if (!hcd || !hcd-> private_data) {59 if (!hcd || !hcd->driver.data) { 60 60 usb_log_error("Interrupt on not yet initialized device.\n"); 61 61 return; 62 62 } 63 63 const uint16_t status = IPC_GET_ARG1(*call); 64 hc_interrupt(hcd-> private_data, status);64 hc_interrupt(hcd->driver.data, status); 65 65 } 66 66
Note:
See TracChangeset
for help on using the changeset viewer.