Source-Changes-HG archive

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

[src/trunk]: src/sys Fix typo (s/controler/controller/).



details:   https://anonhg.NetBSD.org/src/rev/965e33e036d9
branches:  trunk
changeset: 459028:965e33e036d9
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Aug 21 04:51:41 2019 +0000

description:
Fix typo (s/controler/controller/).

diffstat:

 sys/arch/ews4800mips/include/sbd_tr2.h |  4 ++--
 sys/arch/mips/rmi/rmixl_iobus.c        |  8 ++++----
 sys/arch/mips/rmi/rmixl_iobusvar.h     |  4 ++--
 sys/arch/x86/include/smbiosvar.h       |  6 +++---
 sys/dev/ata/ata.c                      |  6 +++---
 5 files changed, 14 insertions(+), 14 deletions(-)

diffs (119 lines):

diff -r 39a726d37a98 -r 965e33e036d9 sys/arch/ews4800mips/include/sbd_tr2.h
--- a/sys/arch/ews4800mips/include/sbd_tr2.h    Wed Aug 21 04:17:40 2019 +0000
+++ b/sys/arch/ews4800mips/include/sbd_tr2.h    Wed Aug 21 04:51:41 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sbd_tr2.h,v 1.2 2008/04/28 20:23:18 martin Exp $       */
+/*     $NetBSD: sbd_tr2.h,v 1.3 2019/08/21 04:51:41 msaitoh Exp $      */
 
 /*-
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -135,7 +135,7 @@
 /* read operation invokes channel attention. */
 #define        ETHER_SETADDR_REG       ((volatile uint32_t *)0xbb060000)
 
-/* DCC (DMA controler. Parallel port and FDD use this.) */
+/* DCC (DMA controller. Parallel port and FDD use this.) */
 struct DCC {
        uint32_t addr;  /* DMA address */
        uint32_t cnt;   /* transfer count */
diff -r 39a726d37a98 -r 965e33e036d9 sys/arch/mips/rmi/rmixl_iobus.c
--- a/sys/arch/mips/rmi/rmixl_iobus.c   Wed Aug 21 04:17:40 2019 +0000
+++ b/sys/arch/mips/rmi/rmixl_iobus.c   Wed Aug 21 04:51:41 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rmixl_iobus.c,v 1.4 2018/09/16 09:25:47 skrll Exp $    */
+/*     $NetBSD: rmixl_iobus.c,v 1.5 2019/08/21 04:51:41 msaitoh Exp $  */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 /*
  * RMI Peripherals IO Bus support
- * - interface to NOR, NAND, PCMCIA Memory controlers, &etc.
+ * - interface to NOR, NAND, PCMCIA Memory controllers, &etc.
  * - manages the 10 Chip Selects
  * - manages the "Flash" interrupts
  * - manages the "Flash" errors
@@ -47,7 +47,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rmixl_iobus.c,v 1.4 2018/09/16 09:25:47 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rmixl_iobus.c,v 1.5 2019/08/21 04:51:41 msaitoh Exp $");
 
 #include "locators.h"
 
@@ -73,7 +73,7 @@
  
 typedef struct rmixl_iobus_softc {
        device_t                sc_dev;
-       bus_space_tag_t         sc_obio_bst;    /* for iobus device controler access */
+       bus_space_tag_t         sc_obio_bst;    /* for iobus device controller access */
        bus_space_handle_t      sc_obio_bsh;    /*  "   "     "      "         "     */
        bus_addr_t              sc_obio_addr;
        bus_size_t              sc_obio_size;
diff -r 39a726d37a98 -r 965e33e036d9 sys/arch/mips/rmi/rmixl_iobusvar.h
--- a/sys/arch/mips/rmi/rmixl_iobusvar.h        Wed Aug 21 04:17:40 2019 +0000
+++ b/sys/arch/mips/rmi/rmixl_iobusvar.h        Wed Aug 21 04:51:41 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rmixl_iobusvar.h,v 1.1 2011/03/18 01:04:09 cliff Exp $ */
+/*     $NetBSD: rmixl_iobusvar.h,v 1.2 2019/08/21 04:51:41 msaitoh Exp $       */
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -32,7 +32,7 @@
 #define _RMIXL_IOBUSVAR_H_
 
 struct rmixl_iobus_attach_args {
-       bus_space_tag_t         ia_obio_bst;    /* for iobus controler access */
+       bus_space_tag_t         ia_obio_bst;    /* for iobus controller access */
        bus_space_handle_t      ia_obio_bsh;    /*  "   "     "         "     */
        bus_space_tag_t         ia_iobus_bst;   /* for iobus access */
        bus_addr_t              ia_iobus_addr;  /* device iobus address */
diff -r 39a726d37a98 -r 965e33e036d9 sys/arch/x86/include/smbiosvar.h
--- a/sys/arch/x86/include/smbiosvar.h  Wed Aug 21 04:17:40 2019 +0000
+++ b/sys/arch/x86/include/smbiosvar.h  Wed Aug 21 04:51:41 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: smbiosvar.h,v 1.5 2018/12/25 16:45:02 mlelstv Exp $ */
+/*     $NetBSD: smbiosvar.h,v 1.6 2019/08/21 04:51:41 msaitoh Exp $ */
 /*
  * Copyright (c) 2006 Gordon Willem Klok <gklok%cogeco.ca@localhost>
  * Copyright (c) 2005 Jordan Hargrave
@@ -153,8 +153,8 @@
        uint32_t        charext;
        uint8_t major_rel;
        uint8_t minor_rel;
-       uint8_t ecf_mjr_rel;    /* embedded controler firmware */
-       uint8_t         ecf_min_rel;    /* embedded controler firmware */
+       uint8_t ecf_mjr_rel;    /* embedded controller firmware */
+       uint8_t         ecf_min_rel;    /* embedded controller firmware */
 } __packed;
 
 /*
diff -r 39a726d37a98 -r 965e33e036d9 sys/dev/ata/ata.c
--- a/sys/dev/ata/ata.c Wed Aug 21 04:17:40 2019 +0000
+++ b/sys/dev/ata/ata.c Wed Aug 21 04:51:41 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ata.c,v 1.149 2019/05/25 16:30:18 christos Exp $       */
+/*     $NetBSD: ata.c,v 1.150 2019/08/21 04:51:41 msaitoh Exp $        */
 
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.149 2019/05/25 16:30:18 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.150 2019/08/21 04:51:41 msaitoh Exp $");
 
 #include "opt_ata.h"
 
@@ -2232,7 +2232,7 @@
        struct ata_channel *chp = sc->sc_chan;
 
        /*
-        * XXX joerg: with wdc, the first channel unfreezes the controler.
+        * XXX joerg: with wdc, the first channel unfreezes the controller.
         * Move this the reset and queue idling into wdc.
         */
        ata_channel_lock(chp);



Home | Main Index | Thread Index | Old Index