Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Fix an error message.



details:   https://anonhg.NetBSD.org/src/rev/158d521b59bb
branches:  trunk
changeset: 535551:158d521b59bb
user:      augustss <augustss%NetBSD.org@localhost>
date:      Thu Aug 22 02:54:18 2002 +0000

description:
Fix an error message.

diffstat:

 sys/dev/pci/ehci_pci.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 40a2c4794f4c -r 158d521b59bb sys/dev/pci/ehci_pci.c
--- a/sys/dev/pci/ehci_pci.c    Thu Aug 22 02:27:06 2002 +0000
+++ b/sys/dev/pci/ehci_pci.c    Thu Aug 22 02:54:18 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ehci_pci.c,v 1.8 2002/02/14 21:58:30 augustss Exp $    */
+/*     $NetBSD: ehci_pci.c,v 1.9 2002/08/22 02:54:18 augustss Exp $    */
 
 /*
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.8 2002/02/14 21:58:30 augustss Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.9 2002/08/22 02:54:18 augustss Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -118,7 +118,7 @@
        /* Map I/O registers */
        if (pci_mapreg_map(pa, PCI_CBMEM, PCI_MAPREG_TYPE_MEM, 0,
                           &sc->sc.iot, &sc->sc.ioh, NULL, &sc->sc.sc_size)) {
-               printf("%s: can't map i/o space\n", devname);
+               printf("%s: can't map memory space\n", devname);
                return;
        }
 



Home | Main Index | Thread Index | Old Index