From: Tom Rix Date: Sun, 1 Nov 2020 15:56:01 +0000 (-0800) Subject: ethtool: remove unneeded semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9d253c02acd6bfd8c9a5c0d3a9ce18daaac84489;p=linux.git ethtool: remove unneeded semicolon A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix Link: https://lore.kernel.org/r/20201101155601.2294374-1-trix@redhat.com Signed-off-by: Jakub Kicinski --- diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c index ec2cd7aab5add..771688e1b0da9 100644 --- a/net/ethtool/ioctl.c +++ b/net/ethtool/ioctl.c @@ -2433,7 +2433,7 @@ static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev, return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt); default: return -EOPNOTSUPP; - }; + } } static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)