diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-01-11 21:40:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-01-11 21:40:06 +0000 |
commit | 8be57683c418b81c57a036612ff438bc99f85c4d (patch) | |
tree | f5fbbc3aa086d2c4f9bf92b8ecf771b90711a57c /sys/dev | |
parent | 6ddc21c63bd05c609b1725da681cd2697105117e (diff) |
fix a few strings
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/auich.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c index 25e0d2d9d62..93e2ea44e6d 100644 --- a/sys/dev/pci/auich.c +++ b/sys/dev/pci/auich.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auich.c,v 1.5 2001/01/11 19:22:33 mickey Exp $ */ +/* $OpenBSD: auich.c,v 1.6 2001/01/11 21:40:05 mickey Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -209,7 +209,7 @@ struct auich_softc { int auich_debug = 0xfffe; #define AUICH_DEBUG_CODECIO 0x0001 #define AUICH_DEBUG_DMA 0x0002 -#define AUICH_DEBUG_PARAM 0x0004 +#define AUICH_DEBUG_PARAM 0x0004 #else #define DPRINTF(x,y) /* nothing */ #endif @@ -231,9 +231,9 @@ static const struct auich_devtype { int options; char name[8]; } auich_devices[] = { - { PCI_PRODUCT_INTEL_82801AA_ACA, 0, "AUICH" }, - { PCI_PRODUCT_INTEL_82801AB_ACA, 0, "AUICH0" }, - { PCI_PRODUCT_INTEL_82801BA_ACA, 0, "AUICH2" }, + { PCI_PRODUCT_INTEL_82801AA_ACA, 0, "ICH" }, + { PCI_PRODUCT_INTEL_82801AB_ACA, 0, "ICH0" }, + { PCI_PRODUCT_INTEL_82801BA_ACA, 0, "ICH2" }, { PCI_PRODUCT_INTEL_82440MX_ACA, 0, "440MX" }, }; @@ -794,7 +794,7 @@ auich_freem(v, ptr, pool) for (p = sc->sc_dmas; p->addr != ptr; p = p->next) if (p->next == NULL) { - printf("auich_free: trying to free not allocated memory"); + printf("auich_freem: trying to free not allocated memory"); return; } |