Module Name: src
Committed By: martin
Date: Mon Nov 25 16:37:06 UTC 2019
Modified Files:
src/sys/dev/usb [netbsd-9]: if_upl.c
Log Message:
Pull up following revision(s) (requested by msaitoh in ticket #474):
sys/dev/usb/if_upl.c: revision 1.68
Make it compilable with UPL_DEBUG.
To generate a diff of this commit:
cvs rdiff -u -r1.64.2.2 -r1.64.2.3 src/sys/dev/usb/if_upl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/usb/if_upl.c
diff -u src/sys/dev/usb/if_upl.c:1.64.2.2 src/sys/dev/usb/if_upl.c:1.64.2.3
--- src/sys/dev/usb/if_upl.c:1.64.2.2 Fri Sep 13 06:51:58 2019
+++ src/sys/dev/usb/if_upl.c Mon Nov 25 16:37:06 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: if_upl.c,v 1.64.2.2 2019/09/13 06:51:58 martin Exp $ */
+/* $NetBSD: if_upl.c,v 1.64.2.3 2019/11/25 16:37:06 martin Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_upl.c,v 1.64.2.2 2019/09/13 06:51:58 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_upl.c,v 1.64.2.3 2019/11/25 16:37:06 martin Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -229,8 +229,8 @@ upl_rx_loop(struct usbnet * un, struct u
{
usbnet_isowned_rx(un);
- DPRINTFN(9,("%s: %s: enter status=%d length=%d\n",
- device_xname(un->un_dev), __func__, status, total_len));
+ DPRINTFN(9,("%s: %s: enter length=%d\n",
+ device_xname(un->un_dev), __func__, total_len));
usbnet_input(un, c->unc_buf, total_len);
}