diff options
author | Tom Rix <trix@redhat.com> | 2020-11-01 07:56:01 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-02 17:50:53 -0800 |
commit | 9d253c02acd6bfd8c9a5c0d3a9ce18daaac84489 (patch) | |
tree | 6ea7af20ea16ebe16c664774909ba337542f54e8 /net/ethtool | |
parent | f2219c322ff2d91afbaa1236f1f91a28b785cd1e (diff) | |
download | linux-9d253c02acd6bfd8c9a5c0d3a9ce18daaac84489.tar.bz2 |
ethtool: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101155601.2294374-1-trix@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ethtool')
-rw-r--r-- | net/ethtool/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c index ec2cd7aab5ad..771688e1b0da 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) |