svn commit: r333743 - head/sys/dev/usb/net

Andreas Tobler andreast at FreeBSD.org
Thu May 17 17:57:42 UTC 2018


Author: andreast
Date: Thu May 17 17:57:41 2018
New Revision: 333743
URL: https://svnweb.freebsd.org/changeset/base/333743

Log:
  Fix build if USB_DEBUG is defined.

Modified:
  head/sys/dev/usb/net/if_muge.c

Modified: head/sys/dev/usb/net/if_muge.c
==============================================================================
--- head/sys/dev/usb/net/if_muge.c	Thu May 17 17:45:47 2018	(r333742)
+++ head/sys/dev/usb/net/if_muge.c	Thu May 17 17:57:41 2018	(r333743)
@@ -126,7 +126,7 @@ static const struct usb_device_id lan78xx_devs[] = {
 };
 
 #ifdef USB_DEBUG
-#define lan78xx_dbg_printf(sc, fmt, args...) \
+#define muge_dbg_printf(sc, fmt, args...) \
 do { \
 	if (muge_debug > 0) \
 		device_printf((sc)->sc_ue.ue_dev, "debug: " fmt, ##args); \


More information about the svn-src-head mailing list