From: Felipe Balbi Date: Mon, 23 Jan 2017 12:20:08 +0000 (+0200) Subject: usb: host: xhci: remove unneded semicolon X-Git-Tag: v4.14-rc1~1458^2~62 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec84481708adc5e02c00d36262679237573fe618;p=platform%2Fkernel%2Flinux-rpi.git usb: host: xhci: remove unneded semicolon it does no good, let's remove it. Signed-off-by: Felipe Balbi Signed-off-by: Mathias Nyman Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci-ext-caps.h b/drivers/usb/host/xhci-ext-caps.h index e0244fb..28deea5 100644 --- a/drivers/usb/host/xhci-ext-caps.h +++ b/drivers/usb/host/xhci-ext-caps.h @@ -117,7 +117,7 @@ static inline int xhci_find_next_ext_cap(void __iomem *base, u32 start, int id) offset = XHCI_HCC_EXT_CAPS(val) << 2; if (!offset) return 0; - }; + } do { val = readl(base + offset); if (val == ~0)