Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/usb.c

    r84eb7432 ra90fc0c  
    5858};
    5959
    60 static const char *str_direction[] = {
    61         "in",
    62         "out",
    63         "both"
    64 };
    65 
    6660/** String representation for USB transfer type.
    6761 *
     
    9084}
    9185
    92 /** String representation of USB direction.
    93  *
    94  * @param d The direction.
    95  * @return Direction as a string (in English).
    96  */
    97 const char *usb_str_direction(usb_direction_t d)
    98 {
    99         if (d >= ARR_SIZE(str_direction)) {
    100                 return "invalid";
    101         }
    102         return str_direction[d];
    103 }
    104 
    10586/** String representation of USB speed.
    10687 *
Note: See TracChangeset for help on using the changeset viewer.