PERFORCE change 108314 for review

Hans Petter Selasky hselasky at FreeBSD.org
Mon Oct 23 10:41:58 PDT 2006


http://perforce.freebsd.org/chv.cgi?CH=108314

Change 108314 by hselasky at hselasky_mini_itx on 2006/10/23 17:40:38

	Make sure that "qh_self" is printed out correctly on
	big-endian machines.

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/uhci.c#13 edit

Differences ...

==== //depot/projects/usb/src/sys/dev/usb/uhci.c#13 (text+ko) ====

@@ -531,7 +531,7 @@
 uhci_dump_qh(uhci_qh_t *sqh)
 {
 	DPRINTFN(-1,("QH(%p) at 0x%08x: h_next=%08x e_next=%08x\n", sqh,
-		     sqh->qh_self, le32toh(sqh->qh_h_next),
+		     le32toh(sqh->qh_self), le32toh(sqh->qh_h_next),
 		     le32toh(sqh->qh_e_next)));
 	return;
 }


More information about the p4-projects mailing list