Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/walnut/pci Fix tyop in local function name.



details:   https://anonhg.NetBSD.org/src/rev/c6dc5e62036d
branches:  trunk
changeset: 536159:c6dc5e62036d
user:      simonb <simonb%NetBSD.org@localhost>
date:      Tue Sep 10 00:52:37 2002 +0000

description:
Fix tyop in local function name.

diffstat:

 sys/arch/walnut/pci/pchb.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (33 lines):

diff -r 9faa4e9a7b18 -r c6dc5e62036d sys/arch/walnut/pci/pchb.c
--- a/sys/arch/walnut/pci/pchb.c        Mon Sep 09 19:28:36 2002 +0000
+++ b/sys/arch/walnut/pci/pchb.c        Tue Sep 10 00:52:37 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pchb.c,v 1.7 2002/08/13 06:15:16 simonb Exp $  */
+/*     $NetBSD: pchb.c,v 1.8 2002/09/10 00:52:37 simonb Exp $  */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
 
 static int     pchbmatch(struct device *, struct cfdata *, void *);
 static void    pchbattach(struct device *, struct device *, void *);
-static int     phcbprint(void *, const char *);
+static int     pchbprint(void *, const char *);
 
 struct cfattach pchb_ca = {
        sizeof(struct device), pchbmatch, pchbattach
@@ -165,12 +165,12 @@
        pba.pba_bus = 0;
        pba.pba_bridgetag = NULL;
        pba.pba_flags = PCI_FLAGS_MEM_ENABLED | PCI_FLAGS_IO_ENABLED;
-       config_found(self, &pba, phcbprint);
+       config_found(self, &pba, pchbprint);
 }
 
 
 static int
-phcbprint(void *aux, const char *p)
+pchbprint(void *aux, const char *p)
 {
 
        if (p == NULL)



Home | Main Index | Thread Index | Old Index