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-rockchip-emmc.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-rockchip-emmc.c')
-rw-r--r-- | drivers/phy/phy-rockchip-emmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-rockchip-emmc.c b/drivers/phy/phy-rockchip-emmc.c index fd57345ffed2..f1b24f18e9b2 100644 --- a/drivers/phy/phy-rockchip-emmc.c +++ b/drivers/phy/phy-rockchip-emmc.c @@ -132,7 +132,7 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) default: ideal_rate = 200000000; break; - }; + } diff = (rate > ideal_rate) ? rate - ideal_rate : ideal_rate - rate; |