diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2019-05-28 08:59:33 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2019-05-28 08:59:33 +0000 |
| commit | a46a1fcddfd1137ebe6530b3b8b8f8c07335ef4b (patch) | |
| tree | d9833e1a7940dd542eaa44efc782386f3626fc8c /sys/dev | |
| parent | 9d36f1bd9de8986d742aea947fa219baee72cdf8 (diff) | |
s/recieve/receive/
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpi/acpidevs | 4 | ||||
| -rw-r--r-- | sys/dev/gpib/mtreg.h | 4 | ||||
| -rw-r--r-- | sys/dev/ic/gem.c | 8 | ||||
| -rw-r--r-- | sys/dev/ic/tulip.c | 6 | ||||
| -rw-r--r-- | sys/dev/ic/tulipreg.h | 4 | ||||
| -rw-r--r-- | sys/dev/ieee1394/fwohci.c | 10 | ||||
| -rw-r--r-- | sys/dev/microcode/aic7xxx/aic79xx.reg | 18 | ||||
| -rw-r--r-- | sys/dev/pci/if_wm.c | 6 | ||||
| -rw-r--r-- | sys/dev/pckbport/alps.c | 10 | ||||
| -rw-r--r-- | sys/dev/pckbport/alpsreg.h | 4 | ||||
| -rw-r--r-- | sys/dev/pcmcia/if_xireg.h | 4 | ||||
| -rw-r--r-- | sys/dev/raidframe/rf_map.c | 6 | ||||
| -rw-r--r-- | sys/dev/usb/if_axenreg.h | 4 |
13 files changed, 44 insertions, 44 deletions
diff --git a/sys/dev/acpi/acpidevs b/sys/dev/acpi/acpidevs index 4dcbd8f236c..d33dfa28ba1 100644 --- a/sys/dev/acpi/acpidevs +++ b/sys/dev/acpi/acpidevs @@ -1,4 +1,4 @@ -# $NetBSD: acpidevs,v 1.35 2011/06/22 19:26:22 jruoho Exp $ +# $NetBSD: acpidevs,v 1.36 2019/05/28 08:59:34 msaitoh Exp $ # # Originally extracted from: @@ -389,7 +389,7 @@ ACPI000C Processor Aggregator ACPI000D Power Meter ACPI000E Wake Alarm Device # **** Others **** -ENE0100 KB3924-based CIR Port Reciever +ENE0100 KB3924-based CIR Port Receiver HPQ0004 Hewlett-Packard 3D DriveGuard accelerometer IBM0079 IBM Docking Station INT0800 Intel Firmware Hub Device diff --git a/sys/dev/gpib/mtreg.h b/sys/dev/gpib/mtreg.h index 08b6352a558..974a73a08fc 100644 --- a/sys/dev/gpib/mtreg.h +++ b/sys/dev/gpib/mtreg.h @@ -1,4 +1,4 @@ -/* $NetBSD: mtreg.h,v 1.4 2005/12/11 12:21:21 christos Exp $ */ +/* $NetBSD: mtreg.h,v 1.5 2019/05/28 08:59:34 msaitoh Exp $ */ /* * Copyright (c) 1992, The University of Utah and @@ -131,7 +131,7 @@ struct mt_stat { #define MTF_ATEOT 0x0100 /* tape hit EOT - can allow one forward op */ #define MTF_PASTEOT 0x0200 /* tape is beyond EOT - force backward motion */ #define MTF_DSJTIMEO 0x0400 /* timed out gpibrecv()ing DSJ - continue it */ -#define MTF_STATTIMEO 0x0800 /* timed out recieving STATUS - continue it */ +#define MTF_STATTIMEO 0x0800 /* timed out receiving STATUS - continue it */ #define MTF_STATCONT 0x1000 /* STATTIMEO is continuable */ /* additional "mtcommand"s */ diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c index 14d7ada0e4e..7b598c5512f 100644 --- a/sys/dev/ic/gem.c +++ b/sys/dev/ic/gem.c @@ -1,4 +1,4 @@ -/* $NetBSD: gem.c,v 1.119 2019/05/28 07:41:48 msaitoh Exp $ */ +/* $NetBSD: gem.c,v 1.120 2019/05/28 08:59:34 msaitoh Exp $ */ /* * @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: gem.c,v 1.119 2019/05/28 07:41:48 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: gem.c,v 1.120 2019/05/28 08:59:34 msaitoh Exp $"); #include "opt_inet.h" @@ -820,7 +820,7 @@ gem_reset_rxdma(struct gem_softc *sc) /* Redo ERX Configuration */ gem_rx_common(sc); - /* Give the reciever a swift kick */ + /* Give the receiver a swift kick */ bus_space_write_4(t, h, GEM_RX_KICK, GEM_NRXDESC - 4); } @@ -1214,7 +1214,7 @@ gem_init(struct ifnet *ifp) (*sc->sc_hwinit)(sc); - /* step 15. Give the reciever a swift kick */ + /* step 15. Give the receiver a swift kick */ bus_space_write_4(t, h, GEM_RX_KICK, GEM_NRXDESC-4); if ((sc->sc_flags & (GEM_SERDES | GEM_SERIAL)) != 0) diff --git a/sys/dev/ic/tulip.c b/sys/dev/ic/tulip.c index 6b29a0b9a82..5d5845b4fe9 100644 --- a/sys/dev/ic/tulip.c +++ b/sys/dev/ic/tulip.c @@ -1,4 +1,4 @@ -/* $NetBSD: tulip.c,v 1.196 2019/05/28 07:41:48 msaitoh Exp $ */ +/* $NetBSD: tulip.c,v 1.197 2019/05/28 08:59:34 msaitoh Exp $ */ /*- * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc. @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: tulip.c,v 1.196 2019/05/28 07:41:48 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tulip.c,v 1.197 2019/05/28 08:59:34 msaitoh Exp $"); #include <sys/param.h> @@ -2965,7 +2965,7 @@ tlp_al981_filter_setup(struct tulip_softc *sc) /* * tlp_asix_filter_setup: * - * Set the ASIX AX8814x recieve filter. + * Set the ASIX AX8814x receive filter. */ static void tlp_asix_filter_setup(struct tulip_softc *sc) diff --git a/sys/dev/ic/tulipreg.h b/sys/dev/ic/tulipreg.h index 6baabc07b2b..f8b33295bed 100644 --- a/sys/dev/ic/tulipreg.h +++ b/sys/dev/ic/tulipreg.h @@ -1,4 +1,4 @@ -/* $NetBSD: tulipreg.h,v 1.38 2019/04/03 05:34:39 thorpej Exp $ */ +/* $NetBSD: tulipreg.h,v 1.39 2019/05/28 08:59:34 msaitoh Exp $ */ /*- * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc. @@ -588,7 +588,7 @@ struct tulip_desc { #define OPMODE_PM 0x00000080 /* pass all multicast */ #define OPMODE_WINB_AEP 0x00000080 /* accept error packet */ #define OPMODE_FKD 0x00000100 /* flaky oscillator disable */ -#define OPMODE_AX_RB 0x00000100 /* recieve broadcast packets */ +#define OPMODE_AX_RB 0x00000100 /* receive broadcast packets */ #define OPMODE_FD 0x00000200 /* full-duplex mode */ #define OPMODE_OM 0x00000c00 /* operating mode */ #define OPMODE_OM_NORMAL 0x00000000 /* normal mode */ diff --git a/sys/dev/ieee1394/fwohci.c b/sys/dev/ieee1394/fwohci.c index 32c00307481..bd6d896d5ed 100644 --- a/sys/dev/ieee1394/fwohci.c +++ b/sys/dev/ieee1394/fwohci.c @@ -1,4 +1,4 @@ -/* $NetBSD: fwohci.c,v 1.141 2016/11/21 01:19:35 riastradh Exp $ */ +/* $NetBSD: fwohci.c,v 1.142 2019/05/28 08:59:34 msaitoh Exp $ */ /*- * Copyright (c) 2003 Hidetoshi Shimokawa @@ -37,7 +37,7 @@ * */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.141 2016/11/21 01:19:35 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.142 2019/05/28 08:59:34 msaitoh Exp $"); #include <sys/param.h> #include <sys/atomic.h> @@ -460,7 +460,7 @@ fwohci_attach(struct fwohci_softc *sc) sc->fc.config_rom[0] |= fw_crc16(&sc->fc.config_rom[1], 5*4); #endif -/* SID recieve buffer must align 2^11 */ +/* SID receive buffer must align 2^11 */ #define OHCI_SIDSIZE (1 << 11) sc->sid_buf = fwdma_alloc_setup(sc->fc.dev, sc->fc.dmat, OHCI_SIDSIZE, &sc->sid_dma, OHCI_SIDSIZE, BUS_DMA_NOWAIT); @@ -644,7 +644,7 @@ fwohci_stop(struct fwohci_softc *sc) OHCI_INT_DMA_ARRS | OHCI_INT_PHY_BUS_R); -/* FLUSH FIFO and reset Transmitter/Reciever */ +/* FLUSH FIFO and reset Transmitter/Receiver */ OWRITE(sc, OHCI_HCCCTL, OHCI_HCC_RESET); #endif @@ -1238,7 +1238,7 @@ fwohci_reset(struct fwohci_softc *sc) OWRITE(sc, OHCI_ITCTLCLR(i), OHCI_CNTL_DMA_RUN); } - /* FLUSH FIFO and reset Transmitter/Reciever */ + /* FLUSH FIFO and reset Transmitter/Receiver */ OWRITE(sc, OHCI_HCCCTL, OHCI_HCC_RESET); if (firewire_debug) printf("resetting OHCI..."); diff --git a/sys/dev/microcode/aic7xxx/aic79xx.reg b/sys/dev/microcode/aic7xxx/aic79xx.reg index e73fe83213d..612cdb9b4c2 100644 --- a/sys/dev/microcode/aic7xxx/aic79xx.reg +++ b/sys/dev/microcode/aic7xxx/aic79xx.reg @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx.reg,v 1.13 2018/02/08 09:05:19 dholland Exp $ */ +/* $NetBSD: aic79xx.reg,v 1.14 2019/05/28 08:59:34 msaitoh Exp $ */ /* * Aic79xx register and scratch ram definitions. @@ -663,7 +663,7 @@ register CMCRXMSG0 { } /* - * Overlay Recieve Message 0 + * Overlay Receive Message 0 */ register OVLYRXMSG0 { address 0x090 @@ -699,7 +699,7 @@ register DCHRXMSG1 { } /* - * CMC Recieve Message 1 + * CMC Receive Message 1 */ register CMCRXMSG1 { address 0x091 @@ -709,7 +709,7 @@ register CMCRXMSG1 { } /* - * Overlay Recieve Message 1 + * Overlay Receive Message 1 */ register OVLYRXMSG1 { address 0x091 @@ -744,7 +744,7 @@ register DCHRXMSG2 { } /* - * CMC Recieve Message 2 + * CMC Receive Message 2 */ register CMCRXMSG2 { address 0x092 @@ -754,7 +754,7 @@ register CMCRXMSG2 { } /* - * Overlay Recieve Message 2 + * Overlay Receive Message 2 */ register OVLYRXMSG2 { address 0x092 @@ -783,7 +783,7 @@ register DCHRXMSG3 { } /* - * CMC Recieve Message 3 + * CMC Receive Message 3 */ register CMCRXMSG3 { address 0x093 @@ -793,7 +793,7 @@ register CMCRXMSG3 { } /* - * Overlay Recieve Message 3 + * Overlay Receive Message 3 */ register OVLYRXMSG3 { address 0x093 @@ -1201,7 +1201,7 @@ register TARGPCISTAT { /* * LQ Packet In - * The last LQ Packet recieved + * The last LQ Packet received */ register LQIN { address 0x020 diff --git a/sys/dev/pci/if_wm.c b/sys/dev/pci/if_wm.c index 80f310df963..3f4c73c5616 100644 --- a/sys/dev/pci/if_wm.c +++ b/sys/dev/pci/if_wm.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_wm.c,v 1.638 2019/05/23 13:10:52 msaitoh Exp $ */ +/* $NetBSD: if_wm.c,v 1.639 2019/05/28 08:59:35 msaitoh Exp $ */ /* * Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc. @@ -82,7 +82,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.638 2019/05/23 13:10:52 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.639 2019/05/28 08:59:35 msaitoh Exp $"); #ifdef _KERNEL_OPT #include "opt_net_mpsafe.h" @@ -6789,7 +6789,7 @@ wm_alloc_txrx_queues(struct wm_softc *sc) if (error) goto fail_1; - /* For recieve */ + /* For receive */ error = 0; rx_done = 0; for (i = 0; i < sc->sc_nqueues; i++) { diff --git a/sys/dev/pckbport/alps.c b/sys/dev/pckbport/alps.c index 0650c29d3b2..2f77ca241da 100644 --- a/sys/dev/pckbport/alps.c +++ b/sys/dev/pckbport/alps.c @@ -1,4 +1,4 @@ -/* $NetBSD: alps.c,v 1.11 2019/03/16 03:27:15 ryoon Exp $ */ +/* $NetBSD: alps.c,v 1.12 2019/05/28 08:59:35 msaitoh Exp $ */ /*- * Copyright (c) 2017 Ryo ONODERA <ryo@tetera.org> @@ -30,7 +30,7 @@ #include "opt_pms.h" #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: alps.c,v 1.11 2019/03/16 03:27:15 ryoon Exp $"); +__KERNEL_RCSID(0, "$NetBSD: alps.c,v 1.12 2019/05/28 08:59:35 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -340,13 +340,13 @@ pms_alps_cm_write_nibble(pckbport_tag_t tag, pckbport_slot_t slot, uint8_t nibbl uint8_t cmd[2]; uint8_t resp[3]; int sendparam; - int recieve; + int receive; int res; sendparam = alps_v7_nibble_command_data_arr[nibble].sendparam; - recieve= alps_v7_nibble_command_data_arr[nibble].recieve; + receive= alps_v7_nibble_command_data_arr[nibble].receive; cmd[0] = alps_v7_nibble_command_data_arr[nibble].command; - if (recieve) { + if (receive) { if ((res = pckbport_poll_cmd(tag, slot, cmd, 1, 3, resp, 0)) != 0) { aprint_error("send nibble error: %d\n", res); } diff --git a/sys/dev/pckbport/alpsreg.h b/sys/dev/pckbport/alpsreg.h index a786540d426..cba1ae8a580 100644 --- a/sys/dev/pckbport/alpsreg.h +++ b/sys/dev/pckbport/alpsreg.h @@ -1,4 +1,4 @@ -/* $NetBSD: alpsreg.h,v 1.1 2017/08/13 08:49:27 christos Exp $ */ +/* $NetBSD: alpsreg.h,v 1.2 2019/05/28 08:59:35 msaitoh Exp $ */ /*- * Copyright (c) 2017 Ryo ONODERA <ryo@tetera.org> @@ -39,7 +39,7 @@ struct alps_nibble_command_data { uint8_t command; uint8_t data; int sendparam; - int recieve; + int receive; }; struct alps_nibble_command_data alps_v7_nibble_command_data_arr[] = { diff --git a/sys/dev/pcmcia/if_xireg.h b/sys/dev/pcmcia/if_xireg.h index 2659b8e07cf..83b36b381aa 100644 --- a/sys/dev/pcmcia/if_xireg.h +++ b/sys/dev/pcmcia/if_xireg.h @@ -1,4 +1,4 @@ -/* $NetBSD: if_xireg.h,v 1.8 2005/12/11 12:23:23 christos Exp $ */ +/* $NetBSD: if_xireg.h,v 1.9 2019/05/28 08:59:35 msaitoh Exp $ */ /* OpenBSD: if_xereg.h,v 1.1 1999/05/18 19:18:21 niklas Exp */ /* @@ -251,7 +251,7 @@ /* CMD0 register bits */ #define ONLINE 0x04 /* Online */ #define OFFLINE 0x08 /* Online */ -#define ENABLE_RX 0x20 /* Enable reciever */ +#define ENABLE_RX 0x20 /* Enable receiver */ #define DISABLE_RX 0x80 /* Disable receiver */ /* RX0Msk register bits */ diff --git a/sys/dev/raidframe/rf_map.c b/sys/dev/raidframe/rf_map.c index 4ad740aa4f6..0d5f12574b7 100644 --- a/sys/dev/raidframe/rf_map.c +++ b/sys/dev/raidframe/rf_map.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_map.c,v 1.49 2019/02/10 17:13:33 christos Exp $ */ +/* $NetBSD: rf_map.c,v 1.50 2019/05/28 08:59:35 msaitoh Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. @@ -33,7 +33,7 @@ **************************************************************************/ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rf_map.c,v 1.49 2019/02/10 17:13:33 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_map.c,v 1.50 2019/05/28 08:59:35 msaitoh Exp $"); #include <dev/raidframe/raidframevar.h> @@ -71,7 +71,7 @@ static void rf_FreeASMList(RF_AccessStripeMap_t *asm_list); * * raidAddress - starting address in RAID address space * numBlocks - number of blocks in RAID address space to access - * buffer - buffer to supply/recieve data + * buffer - buffer to supply/receive data * remap - 1 => remap address to spare space ***************************************************************************/ diff --git a/sys/dev/usb/if_axenreg.h b/sys/dev/usb/if_axenreg.h index 87e6428eda4..51d5e2613fa 100644 --- a/sys/dev/usb/if_axenreg.h +++ b/sys/dev/usb/if_axenreg.h @@ -1,4 +1,4 @@ -/* $NetBSD: if_axenreg.h,v 1.12 2019/03/05 08:25:03 msaitoh Exp $ */ +/* $NetBSD: if_axenreg.h,v 1.13 2019/05/28 08:59:35 msaitoh Exp $ */ /* $OpenBSD: if_axenreg.h,v 1.1 2013/10/07 05:37:41 yuo Exp $ */ /* @@ -23,7 +23,7 @@ #define AXEN_REV_UA2 1 -/* recieve header */ +/* receive header */ /* * +-multicast/broadcast * | +-rx_ok |
