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