Changes in uspace/drv/usbhub/port_status.h [39c3d95d:cd4b184] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/port_status.h
r39c3d95d rcd4b184 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup drvusbhub 29 * @{ 30 */ 28 31 29 32 #ifndef PORT_STATUS_H … … 32 35 #include <bool.h> 33 36 #include <sys/types.h> 34 #include <usb/ devreq.h>37 #include <usb/request.h> 35 38 #include "usbhub_private.h" 36 39 … … 170 173 request->request_type = USB_HUB_REQ_TYPE_SET_PORT_FEATURE; 171 174 request->request = USB_HUB_REQUEST_SET_FEATURE; 175 request->value = USB_HUB_FEATURE_PORT_POWER; 176 request->length = 0; 177 } 178 179 /** 180 * set the device request to be a port disable request 181 * @param request 182 * @param port 183 */ 184 static inline void usb_hub_unset_power_port_request( 185 usb_device_request_setup_packet_t * request, uint16_t port 186 ){ 187 request->index = port; 188 request->request_type = USB_HUB_REQ_TYPE_SET_PORT_FEATURE; 189 request->request = USB_HUB_REQUEST_CLEAR_FEATURE; 172 190 request->value = USB_HUB_FEATURE_PORT_POWER; 173 191 request->length = 0; … … 302 320 #endif /* PORT_STATUS_H */ 303 321 322 /** 323 * @} 324 */
Note:
See TracChangeset
for help on using the changeset viewer.