From: John Youn Date: Fri, 20 May 2016 23:34:23 +0000 (-0700) Subject: UPSTREAM: usb: dwc3: Fix DWC3_USB31_REVISION_110A definition X-Git-Tag: firefly_0821_release~1797 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=abf2d3ad110ae0d1103f1d5aa8cb2c65c28ccc93;p=firefly-linux-kernel-4.4.55.git UPSTREAM: usb: dwc3: Fix DWC3_USB31_REVISION_110A definition The DWC3_USB31_REVISION_110A macro uses an invalid constant name in its definition. This is currently not used. Change-Id: I8e37e8848b423de1a06bdeef7190ba4fb54cb21c Signed-off-by: John Youn Signed-off-by: Felipe Balbi Signed-off-by: Wu Liang feng (cherry picked from commit e77c561432bccf5ea9df2f49aa039c015529590e) --- diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index c07ea154a29d..a37891228e39 100644 --- a/drivers/usb/dwc3/core.h +++ b/drivers/usb/dwc3/core.h @@ -879,7 +879,7 @@ struct dwc3 { * just so dwc31 revisions are always larger than dwc3. */ #define DWC3_REVISION_IS_DWC31 0x80000000 -#define DWC3_USB31_REVISION_110A (0x3131302a | DWC3_REVISION_IS_USB31) +#define DWC3_USB31_REVISION_110A (0x3131302a | DWC3_REVISION_IS_DWC31) enum dwc3_ep0_next ep0_next_event; enum dwc3_ep0_state ep0state;