Changeset fa9d3af in mainline for uspace/lib/usb/include/usb/usb.h


Ignore:
Timestamp:
2013-08-07T15:11:40Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5dad73d
Parents:
14dd4c9
Message:

libusbhost: Add information about the nearest HS hub.

The last pice of info needed for HS SPLIT transactions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/include/usb/usb.h

    r14dd4c9 rfa9d3af  
    8383        USB_SPEED_MAX
    8484} usb_speed_t;
     85
     86static inline bool usb_speed_is_11(const usb_speed_t s)
     87{
     88        return (s == USB_SPEED_FULL) || (s == USB_SPEED_LOW);
     89}
    8590
    8691const char *usb_str_speed(usb_speed_t);
Note: See TracChangeset for help on using the changeset viewer.