aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
authorKirill Tkhai <ktkhai@virtuozzo.com>2018-04-26 15:18:38 +0300
committerDavid S. Miller <davem@davemloft.net>2018-04-27 13:53:14 -0400
commit3f5ecd8a90dd553167838098d92206cd9d6142e8 (patch)
treedc9a0d17e4db3b3dbf5581531af7e8b627d25005 /net/core/dev.c
parentgeneve: fix build with modular IPV6 (diff)
downloadlinux-dev-3f5ecd8a90dd553167838098d92206cd9d6142e8.tar.xz
linux-dev-3f5ecd8a90dd553167838098d92206cd9d6142e8.zip
net: Fix coccinelle warning
kbuild test robot says: >coccinelle warnings: (new ones prefixed by >>) >>> net/core/dev.c:1588:2-3: Unneeded semicolon So, let's remove it. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 8f8931b93140..0a2d46424069 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1587,7 +1587,7 @@ const char *netdev_cmd_to_name(enum netdev_cmd cmd)
N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
- };
+ }
#undef N
return "UNKNOWN_NETDEV_EVENT";
}