LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* net/core/dev.c:1588:2-3: Unneeded semicolon
@ 2018-04-26 12:04 kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2018-04-26 12:04 UTC (permalink / raw)
  To: Kirill Tkhai; +Cc: kbuild-all, linux-kernel

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   69bfd470f4623d2d57ad62cb33791cded0c662f4
commit: ede2762d93ff16e0974f7446516b46b1022db213 net: Make NETDEV_XXX commands enum { }
date:   4 weeks ago


coccinelle warnings: (new ones prefixed by >>)

>> net/core/dev.c:1588:2-3: Unneeded semicolon

vim +1588 net/core/dev.c

  1573	
  1574	const char *netdev_cmd_to_name(enum netdev_cmd cmd)
  1575	{
  1576	#define N(val) 						\
  1577		case NETDEV_##val:				\
  1578			return "NETDEV_" __stringify(val);
  1579		switch (cmd) {
  1580		N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
  1581		N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
  1582		N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
  1583		N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
  1584		N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
  1585		N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
  1586		N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
  1587		N(UNREGISTER_FINAL)
> 1588		};
  1589	#undef N
  1590		return "UNKNOWN_NETDEV_EVENT";
  1591	}
  1592	EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
  1593	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-04-26 12:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-26 12:04 net/core/dev.c:1588:2-3: Unneeded semicolon kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).