Name

struct usb_string — wraps a C string and its USB id

Synopsis

struct usb_string {
  u8 id;
  const char * s;
};  

Members

u8 id

the (nonzero) ID for this string

const char * s

the string, in UTF-8 encoding

Description

If you're using usb_gadget_get_string, use this to wrap a string together with its ID.