Changeset 9348862 in mainline for uspace/drv/bus/usb/ohci/ohci.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/ohci/ohci.c
r3f03199 r9348862 58 58 assert(dev); 59 59 hcd_t *hcd = dev_to_hcd(dev); 60 if (!hcd || !hcd-> private_data) {60 if (!hcd || !hcd->driver.data) { 61 61 usb_log_warning("Interrupt on device that is not ready.\n"); 62 62 return; … … 64 64 65 65 const uint16_t status = IPC_GET_ARG1(*call); 66 hc_interrupt(hcd-> private_data, status);66 hc_interrupt(hcd->driver.data, status); 67 67 } 68 68
Note:
See TracChangeset
for help on using the changeset viewer.