Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci s/genric/generic/



details:   https://anonhg.NetBSD.org/src/rev/9c4c14794903
branches:  trunk
changeset: 332725:9c4c14794903
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Oct 06 08:00:57 2014 +0000

description:
s/genric/generic/

diffstat:

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

diffs (54 lines):

diff -r 8ba982be3caf -r 9c4c14794903 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Mon Oct 06 07:52:50 2014 +0000
+++ b/sys/dev/pci/pci_subr.c    Mon Oct 06 08:00:57 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.128 2014/10/06 07:15:56 msaitoh Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.129 2014/10/06 08:00:57 msaitoh Exp $   */
 
 /*
  * Copyright (c) 1997 Zubin D. Dittia.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.128 2014/10/06 07:15:56 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.129 2014/10/06 08:00:57 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -249,7 +249,7 @@
 
 /* Serial controller programming interface */
 static const struct pci_class pci_interface_serial[] = {
-       { "genric XT-compat",   PCI_INTERFACE_SERIAL_XT,        NULL,   },
+       { "generic XT-compat",  PCI_INTERFACE_SERIAL_XT,        NULL,   },
        { "16450-compat",       PCI_INTERFACE_SERIAL_16450,     NULL,   },
        { "16550-compat",       PCI_INTERFACE_SERIAL_16550,     NULL,   },
        { "16650-compat",       PCI_INTERFACE_SERIAL_16650,     NULL,   },
@@ -301,7 +301,7 @@
 
 /* PIC programming interface */
 static const struct pci_class pci_interface_pic[] = {
-       { "genric 8259",        PCI_INTERFACE_PIC_8259,         NULL,   },
+       { "generic 8259",       PCI_INTERFACE_PIC_8259,         NULL,   },
        { "ISA PIC",            PCI_INTERFACE_PIC_ISA,          NULL,   },
        { "EISA PIC",           PCI_INTERFACE_PIC_EISA,         NULL,   },
        { "IO APIC",            PCI_INTERFACE_PIC_IOAPIC,       NULL,   },
@@ -311,7 +311,7 @@
 
 /* DMA programming interface */
 static const struct pci_class pci_interface_dma[] = {
-       { "genric 8237",        PCI_INTERFACE_DMA_8237,         NULL,   },
+       { "generic 8237",       PCI_INTERFACE_DMA_8237,         NULL,   },
        { "ISA",                PCI_INTERFACE_DMA_ISA,          NULL,   },
        { "EISA",               PCI_INTERFACE_DMA_EISA,         NULL,   },
        { NULL,                 0,                              NULL,   },
@@ -319,7 +319,7 @@
 
 /* Timer programming interface */
 static const struct pci_class pci_interface_tmr[] = {
-       { "genric 8254",        PCI_INTERFACE_TIMER_8254,       NULL,   },
+       { "generic 8254",       PCI_INTERFACE_TIMER_8254,       NULL,   },
        { "ISA",                PCI_INTERFACE_TIMER_ISA,        NULL,   },
        { "EISA",               PCI_INTERFACE_TIMER_EISA,       NULL,   },
        { "HPET",               PCI_INTERFACE_TIMER_HPET,       NULL,   },



Home | Main Index | Thread Index | Old Index