Changeset 8a951ca in mainline for uspace/drv/ohci/root_hub.h
- Timestamp:
- 2011-03-21T13:47:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a372663
- Parents:
- f8e1a2c (diff), 48fe0c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/root_hub.h
rf8e1a2c r8a951ca 33 33 * @brief OHCI driver 34 34 */ 35 #ifndef DRV_OHCI_ OHCI_RH_H36 #define DRV_OHCI_ OHCI_RH_H35 #ifndef DRV_OHCI_ROOT_HUB_H 36 #define DRV_OHCI_ROOT_HUB_H 37 37 38 38 #include <usb/usb.h> … … 41 41 #include "batch.h" 42 42 43 typedef struct ohci_rh {43 typedef struct rh { 44 44 ohci_regs_t *registers; 45 45 usb_address_t address; 46 } ohci_rh_t; 46 ddf_dev_t *device; 47 } rh_t; 47 48 48 int ohci_rh_init(ohci_rh_t *instance, ohci_regs_t *regs);49 int rh_init(rh_t *instance, ddf_dev_t *dev, ohci_regs_t *regs); 49 50 50 void ohci_rh_request(ohci_rh_t *instance, batch_t *request);51 int rh_request(rh_t *instance, batch_t *request); 51 52 52 void ohci_rh_interrupt(ohci_rh_t *instance);53 void rh_interrupt(rh_t *instance); 53 54 #endif 54 55 /**
Note:
See TracChangeset
for help on using the changeset viewer.