diff options
author | kbuild test robot <lkp@intel.com> | 2019-11-16 01:38:34 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-11-17 00:13:26 +0300 |
commit | 1e8795b1b20d2721620165434cdcf427ecd2ba85 (patch) | |
tree | c072b2e020c1811130401931c9eeafab5417b20a /drivers/net/phy/mscc.c | |
parent | 597b01edafac57aafdbf1ca51e26ceb41c371912 (diff) | |
download | linux-1e8795b1b20d2721620165434cdcf427ecd2ba85.tar.xz |
mscc.c: fix semicolon.cocci warnings
drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 75a1ccfe6c72 ("mscc.c: Add support for additional VSC PHYs")
CC: Bryan Whitehead <Bryan.Whitehead@microchip.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mscc.c')
-rw-r--r-- | drivers/net/phy/mscc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/mscc.c b/drivers/net/phy/mscc.c index aadee8db0ff8..d5f8f351d9ef 100644 --- a/drivers/net/phy/mscc.c +++ b/drivers/net/phy/mscc.c @@ -1680,7 +1680,7 @@ static int vsc8584_config_init(struct phy_device *phydev) default: ret = -EINVAL; break; - }; + } if (ret) goto err; |