Changes in uspace/drv/vhc/hub/hub.h [6cb58e6:95622c4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/vhc/hub/hub.h
r6cb58e6 r95622c4 72 72 } hub_status_change_t; 73 73 74 typedef struct hub hub_t;75 76 74 /** Hub port information. */ 77 75 typedef struct { … … 84 82 /** Status change bitmap. */ 85 83 uint16_t status_change; 86 /** Containing hub. */87 hub_t *hub;88 84 } hub_port_t; 89 85 90 86 /** Hub device type. */ 91 struct hub{87 typedef struct { 92 88 /** Hub ports. */ 93 89 hub_port_t ports[HUB_PORT_COUNT]; … … 96 92 /** Access guard to the whole hub. */ 97 93 fibril_mutex_t guard; 98 /** Last value of status change bitmap. */ 99 bool signal_changes; 100 }; 94 } hub_t; 101 95 102 96 void hub_init(hub_t *);
Note:
See TracChangeset
for help on using the changeset viewer.