diff options
author | Vivek Gautam <vivek.gautam@codeaurora.org> | 2016-10-20 09:53:38 +0300 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2016-11-18 15:49:15 +0300 |
commit | 0e65ba283eb40b9b2f02ac9517aff0e1f6eb28ea (patch) | |
tree | 298c9cbe6220ab52e8c3ee399847f73510c13a20 /drivers/phy/phy-s5pv210-usb2.c | |
parent | b3e78cbc3d4599a3d4dfce6e63286e967444a100 (diff) | |
download | linux-0e65ba283eb40b9b2f02ac9517aff0e1f6eb28ea.tar.xz |
phy: fix semicolon.cocci warnings
Remove unneeded semicolon.
Generated by: coccinellery/semicolon/semicolon.cocci
Signed-off-by: Vivek Gautam <vivek.gautam@codeaurora.org>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/phy-s5pv210-usb2.c')
-rw-r--r-- | drivers/phy/phy-s5pv210-usb2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/phy-s5pv210-usb2.c b/drivers/phy/phy-s5pv210-usb2.c index 004d320767e4..f6f72339bbc3 100644 --- a/drivers/phy/phy-s5pv210-usb2.c +++ b/drivers/phy/phy-s5pv210-usb2.c @@ -103,7 +103,7 @@ static void s5pv210_isol(struct samsung_usb2_phy_instance *inst, bool on) break; default: return; - }; + } regmap_update_bits(drv->reg_pmu, S5PV210_USB_ISOL_OFFSET, mask, on ? 0 : mask); @@ -127,7 +127,7 @@ static void s5pv210_phy_pwr(struct samsung_usb2_phy_instance *inst, bool on) rstbits = S5PV210_URSTCON_PHY1_ALL | S5PV210_URSTCON_HOST_LINK_ALL; break; - }; + } if (on) { writel(drv->ref_reg_val, drv->reg_phy + S5PV210_UPHYCLK); |