Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4ed89cb authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller
Browse files

net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is not defined

parent 7f267de4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2334,7 +2334,7 @@ do { \
#define netif_vdbg(priv, type, dev, format, args...)		\
({								\
	if (0)							\
		netif_printk(KERN_DEBUG, dev, format, ##args);	\
		netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
	0;							\
})
#endif