Module Name:    src
Committed By:   riz
Date:           Fri Aug 19 19:45:40 UTC 2011

Modified Files:
        src/sys/dev/usb [netbsd-5]: ohci.c

Log Message:
Pull up following revision(s) (requested by jmcneill in ticket #1663):
        sys/dev/usb/ohci.c: patch
Fix the build problem introduced by pullup ticket #1655.


To generate a diff of this commit:
cvs rdiff -u -r1.196.4.1 -r1.196.4.2 src/sys/dev/usb/ohci.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/ohci.c
diff -u src/sys/dev/usb/ohci.c:1.196.4.1 src/sys/dev/usb/ohci.c:1.196.4.2
--- src/sys/dev/usb/ohci.c:1.196.4.1	Fri Aug 12 20:52:25 2011
+++ src/sys/dev/usb/ohci.c	Fri Aug 19 19:45:39 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: ohci.c,v 1.196.4.1 2011/08/12 20:52:25 riz Exp $	*/
+/*	$NetBSD: ohci.c,v 1.196.4.2 2011/08/19 19:45:39 riz Exp $	*/
 /*	$FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $	*/
 
 /*
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.196.4.1 2011/08/12 20:52:25 riz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.196.4.2 2011/08/19 19:45:39 riz Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1330,8 +1330,8 @@
 			DPRINTFN(5,("add ITD %p\n", sitd));
 			continue;
 		}
-		device_printf(sc->sc_dev, "WARNING: addr 0x%08lx not found\n",
-		    (u_long)done);
+		printf("%s: WARNING: addr 0x%08lx not found\n",
+		    device_xname(sc->sc_dev), (u_long)done);
 		break;
 	}
 

Reply via email to