Module Name:    src
Committed By:   matt
Date:           Thu Jan 28 17:42:37 UTC 2010

Modified Files:
        src/sys/dev/pci [matt-nb5-mips64]: ppb.c

Log Message:
Change ppb_fix_pcix to ppb_fix_pcie since pcix is usually PCI-X while
pcie is PCI-Express.


To generate a diff of this commit:
cvs rdiff -u -r1.39.18.1 -r1.39.18.2 src/sys/dev/pci/ppb.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/ppb.c
diff -u src/sys/dev/pci/ppb.c:1.39.18.1 src/sys/dev/pci/ppb.c:1.39.18.2
--- src/sys/dev/pci/ppb.c:1.39.18.1	Thu Jan 21 07:43:59 2010
+++ src/sys/dev/pci/ppb.c	Thu Jan 28 17:42:37 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: ppb.c,v 1.39.18.1 2010/01/21 07:43:59 matt Exp $	*/
+/*	$NetBSD: ppb.c,v 1.39.18.2 2010/01/28 17:42:37 matt Exp $	*/
 
 /*
  * Copyright (c) 1996, 1998 Christopher G. Demetriou.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ppb.c,v 1.39.18.1 2010/01/21 07:43:59 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppb.c,v 1.39.18.2 2010/01/28 17:42:37 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -79,7 +79,7 @@
 }
 
 static void
-ppb_fix_pcix(device_t self)
+ppb_fix_pcie(device_t self)
 {
 	struct ppb_softc *sc = device_private(self);
 	pcireg_t reg;
@@ -127,7 +127,7 @@
 		return;
 	}
 
-	ppb_fix_pcix(self);
+	ppb_fix_pcie(self);
 
 #if 0
 	/*
@@ -189,7 +189,7 @@
 			    sc->sc_pciconfext[(off - 0x40)/4]);
 	}
 
-	ppb_fix_pcix(dv);
+	ppb_fix_pcie(dv);
 
 	return true;
 }

Reply via email to