Skip to content

Commit 3f5ecd8

Browse files
Kirill Tkhaidavem330
authored andcommitted
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 <[email protected]> Signed-off-by: Kirill Tkhai <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 094be09 commit 3f5ecd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/core/dev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ const char *netdev_cmd_to_name(enum netdev_cmd cmd)
15871587
N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
15881588
N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
15891589
N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
1590-
};
1590+
}
15911591
#undef N
15921592
return "UNKNOWN_NETDEV_EVENT";
15931593
}

0 commit comments

Comments
 (0)