diff options
author | Vivek Gautam <vivek.gautam@codeaurora.org> | 2016-10-20 08:53:38 +0200 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2016-11-18 13:49:15 +0100 |
commit | 0e65ba283eb40b9b2f02ac9517aff0e1f6eb28ea (patch) | |
tree | 298c9cbe6220ab52e8c3ee399847f73510c13a20 /drivers/phy/phy-exynos5250-usb2.c | |
parent | phy: exynos-mipi-video: simplify check for coupled phy status (diff) | |
download | linux-0e65ba283eb40b9b2f02ac9517aff0e1f6eb28ea.tar.xz linux-0e65ba283eb40b9b2f02ac9517aff0e1f6eb28ea.zip |
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-exynos5250-usb2.c')
-rw-r--r-- | drivers/phy/phy-exynos5250-usb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-exynos5250-usb2.c b/drivers/phy/phy-exynos5250-usb2.c index 2ed1735a076a..aad806272305 100644 --- a/drivers/phy/phy-exynos5250-usb2.c +++ b/drivers/phy/phy-exynos5250-usb2.c @@ -192,7 +192,7 @@ static void exynos5250_isol(struct samsung_usb2_phy_instance *inst, bool on) break; default: return; - }; + } regmap_update_bits(drv->reg_pmu, offset, mask, on ? 0 : mask); } |