Changeset cd4b184 in mainline for uspace/drv/usbhub/port_status.h


Ignore:
Timestamp:
2011-02-25T16:23:20Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc34f32f
Parents:
d493ac17
Message:

fixed use of new usb pipe api
each hub has it`s own fibril

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhub/port_status.h

    rd493ac17 rcd4b184  
    177177}
    178178
     179/**
     180 * set the device request to be a port disable request
     181 * @param request
     182 * @param port
     183 */
     184static inline void usb_hub_unset_power_port_request(
     185usb_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;
     190        request->value = USB_HUB_FEATURE_PORT_POWER;
     191        request->length = 0;
     192}
     193
    179194/** get i`th bit of port status */
    180195static inline bool usb_port_get_bit(usb_port_status_t * status, int idx)
Note: See TracChangeset for help on using the changeset viewer.