aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
authorGal Pressman <galp@mellanox.com>2018-01-07 12:08:35 +0200
committerDavid S. Miller <davem@davemloft.net>2018-01-08 20:53:14 -0500
commit72dd831e24cc9487a9cd534fdd675fe97e3c1839 (patch)
tree8d888cb6b1067b1dcddd8298f892071cd5f71940 /include/linux/netdevice.h
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next (diff)
downloadlinux-dev-72dd831e24cc9487a9cd534fdd675fe97e3c1839.tar.xz
linux-dev-72dd831e24cc9487a9cd534fdd675fe97e3c1839.zip
net: Fix netdev_WARN_ONCE macro
netdev_WARN_ONCE is broken (whoops..), this fix will remove the unnecessary "condition" parameter, add the missing comma and change "arg" to "args". Fixes: 375ef2b1f0d0 ("net: Introduce netdev_*_once functions") Signed-off-by: Gal Pressman <galp@mellanox.com> Reviewed-by: Saeed Mahameed <saeedm@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--include/linux/netdevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 440b000f07f4..9415e939f8fe 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -4409,8 +4409,8 @@ do { \
WARN(1, "netdevice: %s%s\n" format, netdev_name(dev), \
netdev_reg_state(dev), ##args)
-#define netdev_WARN_ONCE(dev, condition, format, arg...) \
- WARN_ONCE(1, "netdevice: %s%s\n" format, netdev_name(dev) \
+#define netdev_WARN_ONCE(dev, format, args...) \
+ WARN_ONCE(1, "netdevice: %s%s\n" format, netdev_name(dev), \
netdev_reg_state(dev), ##args)
/* netif printk helpers, similar to netdev_printk */