From: John Youn Date: Mon, 23 May 2016 18:32:40 +0000 (-0700) Subject: UPSTREAM: usb: dwc3: ep0: Use the correct type for SET_SEL data X-Git-Tag: firefly_0821_release~1808 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=53f859d8682cc35fb1c03df78c8c0f757715bd7d;p=firefly-linux-kernel-4.4.55.git UPSTREAM: usb: dwc3: ep0: Use the correct type for SET_SEL data u2sel and u2pel should be __le16. Doesn't fix any issue. Found with sparse. Change-Id: Ibe09f6e4c938246afa664bb511c8b912216f2671 Signed-off-by: John Youn Signed-off-by: Felipe Balbi Signed-off-by: Wu Liang feng (cherry picked from commit 501058edebf957a3c101c8119c3286e496873840) --- diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c index 0dc057500ff2..5b95fedee37b 100644 --- a/drivers/usb/dwc3/ep0.c +++ b/drivers/usb/dwc3/ep0.c @@ -616,8 +616,8 @@ static void dwc3_ep0_set_sel_cmpl(struct usb_ep *ep, struct usb_request *req) struct timing { u8 u1sel; u8 u1pel; - u16 u2sel; - u16 u2pel; + __le16 u2sel; + __le16 u2pel; } __packed timing; int ret;