diff options
author | zhengbin <zhengbin13@huawei.com> | 2019-12-14 18:17:24 +0800 |
---|---|---|
committer | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-12-14 16:11:40 -0800 |
commit | 3a5f494d84187db5a86de6aeceec4ae6b58380cd (patch) | |
tree | a41d5e44f14a29eb6774c93d99eb79d984320349 /drivers | |
parent | 826f66b30c2e3d4df533e4224cb8c734afa0a17c (diff) |
net: phy: dp83869: Remove unneeded semicolon
Fixes coccicheck warning:
drivers/net/phy/dp83869.c:337:2-3: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: zhengbin <zhengbin13@huawei.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/dp83869.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/dp83869.c b/drivers/net/phy/dp83869.c index 93021904c5e4..7996a4aea8d2 100644 --- a/drivers/net/phy/dp83869.c +++ b/drivers/net/phy/dp83869.c @@ -334,7 +334,7 @@ static int dp83869_configure_mode(struct phy_device *phydev, break; default: return -EINVAL; - }; + } return ret; } |