Module Name:    src
Committed By:   cegger
Date:           Sun Apr 26 09:47:31 UTC 2009

Modified Files:
        src/sys/dev/pci: ehci_pci.c

Log Message:
u_intNN_t -> uintNN_t


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/dev/pci/ehci_pci.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/pci/ehci_pci.c
diff -u src/sys/dev/pci/ehci_pci.c:1.43 src/sys/dev/pci/ehci_pci.c:1.44
--- src/sys/dev/pci/ehci_pci.c:1.43	Sun Apr 26 09:12:33 2009
+++ src/sys/dev/pci/ehci_pci.c	Sun Apr 26 09:47:31 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci_pci.c,v 1.43 2009/04/26 09:12:33 cegger Exp $	*/
+/*	$NetBSD: ehci_pci.c,v 1.44 2009/04/26 09:47:31 cegger Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.43 2009/04/26 09:12:33 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.44 2009/04/26 09:47:31 cegger Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -273,7 +273,7 @@
 static void
 ehci_dump_caps(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
 {
-	u_int32_t cparams, legctlsts, addr, cap, id;
+	uint32_t cparams, legctlsts, addr, cap, id;
 	int maxdump = 10;
 
 	cparams = EREAD4(sc, EHCI_HCCPARAMS);
@@ -303,7 +303,7 @@
 ehci_release_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
 {
 	const char *devname = device_xname(sc->sc_dev);
-	u_int32_t cparams, addr, cap;
+	uint32_t cparams, addr, cap;
 	pcireg_t legsup;
 	int maxcap = 10;
 
@@ -331,7 +331,7 @@
 ehci_get_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
 {
 	const char *devname = device_xname(sc->sc_dev);
-	u_int32_t cparams, addr, cap;
+	uint32_t cparams, addr, cap;
 	pcireg_t legsup;
 	int maxcap = 10;
 	int ms;

Reply via email to