diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2018-01-13 01:46:49 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-16 10:01:01 +0100 |
commit | dae06208d3105a307d9e6313515e28dddf91188a (patch) | |
tree | 17cedd6470e6a818c012175c7ef07e6cd9954916 /drivers/usb | |
parent | b90c6d1050331089bb65882f382068b0118c64f3 (diff) | |
download | linux-dae06208d3105a307d9e6313515e28dddf91188a.tar.bz2 |
usb: xhci-mtk: fix semicolon.cocci warnings
drivers/usb/host/xhci-mtk.c:311:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: a2ecc4df9f84 ("usb: xhci-mtk: supports remote wakeup for mt2712 with two xHCI IPs")
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/xhci-mtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c index 6da52df11228..b0ab4d5e2751 100644 --- a/drivers/usb/host/xhci-mtk.c +++ b/drivers/usb/host/xhci-mtk.c @@ -308,7 +308,7 @@ static void usb_wakeup_ip_sleep_set(struct xhci_hcd_mtk *mtk, bool enable) break; default: return; - }; + } regmap_update_bits(mtk->uwk, reg, msk, val); } |