From: Felipe Balbi Date: Mon, 23 Jan 2017 12:20:08 +0000 (+0200) Subject: usb: host: xhci: remove unneded semicolon X-Git-Tag: v4.11-rc1~119^2~62 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ec84481708adc5e02c00d36262679237573fe618;p=karo-tx-linux.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 e0244fb3903d..28deea584884 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)