From 5b075dd72966498caf6d104189290bb14af27564 Mon Sep 17 00:00:00 2001 From: andvar Date: Sat, 10 Feb 2024 08:36:03 +0000 Subject: [PATCH] s/psuedo/pseudo/ in comments. --- lib/libc/resolv/res_mkquery.c | 6 +++--- sys/arch/amiga/dev/sci.c | 8 ++++---- sys/arch/powerpc/include/asm.h | 4 ++-- sys/dev/microcode/aic7xxx/aic7xxx.seq | 4 ++-- usr.bin/ctags/ctags.c | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/libc/resolv/res_mkquery.c b/lib/libc/resolv/res_mkquery.c index 8dc1be55f32e..1b5f5fcc0890 100644 --- a/lib/libc/resolv/res_mkquery.c +++ b/lib/libc/resolv/res_mkquery.c @@ -1,4 +1,4 @@ -/* $NetBSD: res_mkquery.c,v 1.16 2017/09/28 23:32:01 christos Exp $ */ +/* $NetBSD: res_mkquery.c,v 1.17 2024/02/10 08:36:04 andvar Exp $ */ /* * Portions Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") @@ -72,7 +72,7 @@ static const char sccsid[] = "@(#)res_mkquery.c 8.1 (Berkeley) 6/4/93"; static const char rcsid[] = "Id: res_mkquery.c,v 1.10 2008/12/11 09:59:00 marka Exp"; #else -__RCSID("$NetBSD: res_mkquery.c,v 1.16 2017/09/28 23:32:01 christos Exp $"); +__RCSID("$NetBSD: res_mkquery.c,v 1.17 2024/02/10 08:36:04 andvar Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -275,7 +275,7 @@ res_nopt(res_state statp, } /* - * Construct variable data (RDATA) block for OPT psuedo-RR, append it + * Construct variable data (RDATA) block for OPT pseudo-RR, append it * to the buffer, then update the RDLEN field (previously set to zero by * res_nopt()) with the new RDATA length. */ diff --git a/sys/arch/amiga/dev/sci.c b/sys/arch/amiga/dev/sci.c index bf3753beed14..2d0c2efe12bc 100644 --- a/sys/arch/amiga/dev/sci.c +++ b/sys/arch/amiga/dev/sci.c @@ -1,4 +1,4 @@ -/* $NetBSD: sci.c,v 1.36 2014/01/22 00:25:16 christos Exp $ */ +/* $NetBSD: sci.c,v 1.37 2024/02/10 08:36:04 andvar Exp $ */ /* * Copyright (c) 1990 The Regents of the University of California. @@ -68,7 +68,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sci.c,v 1.36 2014/01/22 00:25:16 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sci.c,v 1.37 2024/02/10 08:36:04 andvar Exp $"); #include #include @@ -641,7 +641,7 @@ scigo(struct sci_softc *dev, struct scsipi_xfer *xs) case DATA_IN_PHASE: if (count <= 0) goto abort; - /* XXX use psuedo DMA if available */ + /* XXX use pseudo DMA if available */ if (count >= 128 && dev->dma_xfer_in) (*dev->dma_xfer_in)(dev, count, addr, phase); else @@ -652,7 +652,7 @@ scigo(struct sci_softc *dev, struct scsipi_xfer *xs) case DATA_OUT_PHASE: if (count <= 0) goto abort; - /* XXX use psuedo DMA if available */ + /* XXX use pseudo DMA if available */ if (count >= 128 && dev->dma_xfer_out) (*dev->dma_xfer_out)(dev, count, addr, phase); else diff --git a/sys/arch/powerpc/include/asm.h b/sys/arch/powerpc/include/asm.h index 9b61a80e270f..2722d63e8966 100644 --- a/sys/arch/powerpc/include/asm.h +++ b/sys/arch/powerpc/include/asm.h @@ -1,4 +1,4 @@ -/* $NetBSD: asm.h,v 1.53 2022/01/07 22:59:32 andvar Exp $ */ +/* $NetBSD: asm.h,v 1.54 2024/02/10 08:36:04 andvar Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -319,7 +319,7 @@ y: .quad .##y,.TOC.@tocbase,0; \ #endif /* _REGNAMES && (_KERNEL || _STANDALONE) */ /* - * Add some psuedo instructions to made sharing of assembly versions of + * Add some pseudo instructions to made sharing of assembly versions of * ILP32 and LP64 code possible. */ #define ldint lwz /* not needed but for completeness */ diff --git a/sys/dev/microcode/aic7xxx/aic7xxx.seq b/sys/dev/microcode/aic7xxx/aic7xxx.seq index b86815bd9196..021cf2e57d5c 100644 --- a/sys/dev/microcode/aic7xxx/aic7xxx.seq +++ b/sys/dev/microcode/aic7xxx/aic7xxx.seq @@ -40,7 +40,7 @@ * $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx.seq,v 1.123 2003/01/20 20:44:55 gibbs Exp $ */ -VERSION = "$NetBSD: aic7xxx.seq,v 1.23 2022/06/27 22:41:29 andvar Exp $" +VERSION = "$NetBSD: aic7xxx.seq,v 1.24 2024/02/10 08:36:04 andvar Exp $" PATCH_ARG_LIST = "struct ahc_softc *ahc" PREFIX = "ahc_" @@ -57,7 +57,7 @@ PREFIX = "ahc_" * a later time. This problem cannot be resolved by holding a single entry * in scratch ram since a reconnecting target can request sense and this will * create yet another SCB waiting for selection. The solution used here is to - * use byte 27 of the SCB as a psuedo-next pointer and to thread a list + * use byte 27 of the SCB as a pseudo-next pointer and to thread a list * of SCBs that are awaiting selection. Since 0-0xfe are valid SCB indexes, * SCB_LIST_NULL is 0xff which is out of range. An entry is also added to * this list everytime a request sense occurs or after completing a non-tagged diff --git a/usr.bin/ctags/ctags.c b/usr.bin/ctags/ctags.c index bbd6a5204025..e88c7d9ad0d8 100644 --- a/usr.bin/ctags/ctags.c +++ b/usr.bin/ctags/ctags.c @@ -1,4 +1,4 @@ -/* $NetBSD: ctags.c,v 1.14 2023/07/20 20:00:07 lukem Exp $ */ +/* $NetBSD: ctags.c,v 1.15 2024/02/10 08:36:03 andvar Exp $ */ /* * Copyright (c) 1987, 1993, 1994, 1995 @@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 1993, 1994, 1995\ #if 0 static char sccsid[] = "@(#)ctags.c 8.4 (Berkeley) 2/7/95"; #endif -__RCSID("$NetBSD: ctags.c,v 1.14 2023/07/20 20:00:07 lukem Exp $"); +__RCSID("$NetBSD: ctags.c,v 1.15 2024/02/10 08:36:03 andvar Exp $"); #endif /* not lint */ #include @@ -182,7 +182,7 @@ usage: (void)fprintf(stderr, /* * init -- - * this routine sets up the boolean psuedo-functions which work by + * this routine sets up the boolean pseudo-functions which work by * setting boolean flags dependent upon the corresponding character. * Every char which is NOT in that string is false with respect to * the pseudo-function. Therefore, all of the array "_wht" is NO