net: phy: dp83869: Remove unneeded semicolon
authorzhengbin <zhengbin13@huawei.com>
Sat, 14 Dec 2019 10:17:24 +0000 (18:17 +0800)
committerJakub Kicinski <jakub.kicinski@netronome.com>
Sun, 15 Dec 2019 00:11:40 +0000 (16:11 -0800)
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>
drivers/net/phy/dp83869.c

index 9302190..7996a4a 100644 (file)
@@ -334,7 +334,7 @@ static int dp83869_configure_mode(struct phy_device *phydev,
                break;
        default:
                return -EINVAL;
-       };
+       }
 
        return ret;
 }