Changeset e50cd7f in mainline for uspace/drv/usbhub/ports.h
- Timestamp:
- 2011-04-17T19:17:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63517c2, cfbbe1d3
- Parents:
- ef354b6 (diff), 8595577b (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/ports.h
ref354b6 re50cd7f 36 36 #define DRV_USBHUB_PORTS_H 37 37 38 #include <ipc/devman.h> 39 #include <usb/usb.h> 40 #include <ddf/driver.h> 41 #include <fibril_synch.h> 42 38 #include <usb/devdrv.h> 43 39 #include <usb/hub.h> 44 40 45 #include <usb/pipes.h> 46 #include <usb/devdrv.h> 41 typedef struct usb_hub_info_t usb_hub_info_t; 47 42 48 43 /** Information about single port on a hub. */ … … 56 51 */ 57 52 bool reset_completed; 53 /** Whether to announce the port reset as successful. */ 54 bool reset_okay; 58 55 59 56 /** Information about attached device. */ … … 72 69 } 73 70 74 bool hub_port_changes_callback(usb_device_t *, uint8_t *, size_t, void *); 71 72 void usb_hub_process_interrupt(usb_hub_info_t * hub, 73 uint16_t port); 74 75 75 76 76
Note:
See TracChangeset
for help on using the changeset viewer.