From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Wed, 8 Apr 2020 08:32:57 -0600 Subject: [PATCH v5 3/6] usb: Update struct usb_device to indicate speed enum In-Reply-To: <20200408143300.52636-1-sjg@chromium.org> References: <20200408143300.52636-1-sjg@chromium.org> Message-ID: <20200408083251.v5.3.I0fd829dedf499bc0b05be5e4eb590ce829222962@changeid> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The speed member actually uses an enum, so add this to the comment. Signed-off-by: Simon Glass --- Changes in v5: None Changes in v4: None include/usb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/usb.h b/include/usb.h index efb67ea33ff..7fa8182ba86 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 */ + int speed; /* enum usb_device_speed */ char mf[32]; /* manufacturer */ char prod[32]; /* product */ char serial[32]; /* serial number */ -- 2.26.0.292.g33ef6b2f38-goog