From patchwork Sun May 10 16:26:53 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 245412 List-Id: U-Boot discussion From: sjg at chromium.org (Simon Glass) Date: Sun, 10 May 2020 10:26:53 -0600 Subject: [PATCH v6 1/2] usb: Update struct usb_device to indicate speed enum Message-ID: <20200510102651.v6.1.I0fd829dedf499bc0b05be5e4eb590ce829222962@changeid> The speed member actually uses an enum, so add this to the comment. Signed-off-by: Simon Glass Reviewed-by: Marek Vasut --- Changes in v6: - Use the enum directly in the struct include/usb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/usb.h b/include/usb.h index 22f6088fe6..fa9e09607e 100644 --- a/include/usb.h +++ b/include/usb.h @@ -103,7 +103,7 @@ enum { */ struct usb_device { int devnum; /* Device number on USB bus */ - int speed; /* full/low/high */ + enum usb_device_speed speed; /* full/low/high */ char mf[32]; /* manufacturer */ char prod[32]; /* product */ char serial[32]; /* serial number */