Changeset 5b89d43b in mainline for uspace/drv/bus/usb/uhci/root_hub.h
- Timestamp:
- 2013-12-14T11:54:29Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5ceb18
- Parents:
- 3558ba93
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/root_hub.h
r3558ba93 r5b89d43b 38 38 #include <ddf/driver.h> 39 39 #include <ops/hw_res.h> 40 #include <ops/pio_window.h> 40 41 41 42 /** DDF support structure for uhci_rhd driver, provides I/O resources */ … … 45 46 /** The only resource in the RH resource list */ 46 47 hw_resource_t io_regs; 48 /** PIO window in which the RH will operate. */ 49 pio_window_t pio_window; 47 50 } rh_t; 48 51 49 int rh_init( 50 rh_t *instance, ddf_fun_t *fun, uintptr_t reg_addr, size_t reg_size); 52 extern int rh_init(rh_t *, ddf_fun_t *, addr_range_t *, uintptr_t, size_t); 51 53 52 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.