Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Oct 2006 17:41:19 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 108314 for review
Message-ID:  <200610231741.k9NHfJ9f091602@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=108314

Change 108314 by hselasky@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;
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200610231741.k9NHfJ9f091602>