Changeset 86c2ccd in mainline for uspace/drv/uhci-hcd/pci.c
- Timestamp:
- 2011-02-26T01:25:28Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb292a0
- Parents:
- c3ae877
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/pci.c
rc3ae877 r86c2ccd 90 90 io_address = res->res.io_range.address; 91 91 io_size = res->res.io_range.size; 92 usb_log_debug("Found io: % x %d.\n",93 res->res.io_range.address, res->res.io_range.size );92 usb_log_debug("Found io: %llx %zu %zu.\n", 93 res->res.io_range.address, res->res.io_range.size, io_size); 94 94 io_found = true; 95 95 break; … … 125 125 IPC_FLAG_BLOCKING); 126 126 bool enabled = hw_res_enable_interrupt(parent_phone); 127 async_hangup(parent_phone); 127 128 return enabled ? EOK : EIO; 128 129 }
Note:
See TracChangeset
for help on using the changeset viewer.