Skip to content
Snippets Groups Projects
Commit 8e2b6619 authored by Simon Glass's avatar Simon Glass
Browse files

dm: usb: Add a generic descriptor struct


This is useful for creating lists of descriptors, and is better than using
void * for this purpose.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarMarek Vasut <marex@denx.de>
parent 243d7f15
No related branches found
No related tags found
No related merge requests found
......@@ -379,6 +379,11 @@ struct usb_endpoint_descriptor {
#define USB_DT_ENDPOINT_SIZE 7
#define USB_DT_ENDPOINT_AUDIO_SIZE 9 /* Audio extension */
/* Used to access common fields */
struct usb_generic_descriptor {
__u8 bLength;
__u8 bDescriptorType;
};
/*
* Endpoints
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment