diff options
| author | andvar <andvar@NetBSD.org> | 2021-10-04 20:48:05 +0000 |
|---|---|---|
| committer | andvar <andvar@NetBSD.org> | 2021-10-04 20:48:05 +0000 |
| commit | e213d2b73a73eeb45b2fdf8a50e9812154b74181 (patch) | |
| tree | 9dab1f8dde47b4c2d9d2e2260356fea26c959a04 | |
| parent | 6ff56ddbf0a943f922c29a89fdba1b60917d3585 (diff) | |
follow fcambus steps by fixing typos for "unknown" in few more error messages.
| -rw-r--r-- | sys/arch/amiga/dev/grf_cl.c | 6 | ||||
| -rw-r--r-- | sys/arch/arm/imx/imx23_digfilt.c | 4 | ||||
| -rw-r--r-- | sys/arch/atari/dev/atari5380.c | 6 | ||||
| -rw-r--r-- | sys/dev/ieee1394/firewire.c | 6 |
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/arch/amiga/dev/grf_cl.c b/sys/arch/amiga/dev/grf_cl.c index ccba3781e14..7b041f98990 100644 --- a/sys/arch/amiga/dev/grf_cl.c +++ b/sys/arch/amiga/dev/grf_cl.c @@ -1,4 +1,4 @@ -/* $NetBSD: grf_cl.c,v 1.52 2021/08/07 16:18:41 thorpej Exp $ */ +/* $NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $ */ /* * Copyright (c) 1997 Klaus Burkert @@ -36,7 +36,7 @@ #include "opt_amigacons.h" #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.52 2021/08/07 16:18:41 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $"); #include "grfcl.h" #include "ite.h" @@ -1158,7 +1158,7 @@ cl_getcmap(struct grf_softc *gfp, struct grf_colormap *cmap) */ /* - * The source for the above comment is somewhat unknow to me. + * The source for the above comment is somewhat unknown to me. * The Spectrum, Piccolo and PiccoloSD64 have the analog Red and Blue * lines swapped. In 24BPP this provides RGB instead of BGR as it would * be native to the chipset. This requires special programming for the diff --git a/sys/arch/arm/imx/imx23_digfilt.c b/sys/arch/arm/imx/imx23_digfilt.c index 259fd8a22ec..7094ba8944c 100644 --- a/sys/arch/arm/imx/imx23_digfilt.c +++ b/sys/arch/arm/imx/imx23_digfilt.c @@ -1,4 +1,4 @@ -/* $Id: imx23_digfilt.c,v 1.3 2020/04/19 08:18:19 isaki Exp $ */ +/* $Id: imx23_digfilt.c,v 1.4 2021/10/04 20:48:05 andvar Exp $ */ /* * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -1040,7 +1040,7 @@ digfilt_ao_set_rate(struct digfilt_softc *sc, int sr) __SHIFTIN(0x0E00, HW_AUDIOOUT_DACSRR_SRC_FRAC)); break; default: - aprint_error_dev(sc->sc_dev, "uknown sample rate: %d\n", sr); + aprint_error_dev(sc->sc_dev, "unknown sample rate: %d\n", sr); case 44100: val |= (__SHIFTIN(0x1 ,HW_AUDIOOUT_DACSRR_BASEMULT) | __SHIFTIN(0x0, HW_AUDIOOUT_DACSRR_SRC_HOLD) | diff --git a/sys/arch/atari/dev/atari5380.c b/sys/arch/atari/dev/atari5380.c index 4ff16a2ca65..917dff7f477 100644 --- a/sys/arch/atari/dev/atari5380.c +++ b/sys/arch/atari/dev/atari5380.c @@ -1,4 +1,4 @@ -/* $NetBSD: atari5380.c,v 1.64 2019/12/27 09:41:49 msaitoh Exp $ */ +/* $NetBSD: atari5380.c,v 1.65 2021/10/04 20:48:05 andvar Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.64 2019/12/27 09:41:49 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.65 2021/10/04 20:48:05 andvar Exp $"); #include "opt_atariscsi.h" @@ -900,7 +900,7 @@ falcon_get_dma_result(SC_REQ *reqp, u_long *bytes_left) /* * Misc. DMA-error according to Atari... */ - ncr_tprint(reqp, "Unknow ST-SCSI error near 0x%x\n", + ncr_tprint(reqp, "Unknown ST-SCSI error near 0x%x\n", st_dmaaddr_get()); reqp->xs->error = XS_DRIVER_STUFFUP; rv = 1; diff --git a/sys/dev/ieee1394/firewire.c b/sys/dev/ieee1394/firewire.c index bf956f8626b..11b700b547c 100644 --- a/sys/dev/ieee1394/firewire.c +++ b/sys/dev/ieee1394/firewire.c @@ -1,4 +1,4 @@ -/* $NetBSD: firewire.c,v 1.52 2021/08/07 16:19:12 thorpej Exp $ */ +/* $NetBSD: firewire.c,v 1.53 2021/10/04 20:48:05 andvar Exp $ */ /*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: firewire.c,v 1.52 2021/08/07 16:19:12 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: firewire.c,v 1.53 2021/10/04 20:48:05 andvar Exp $"); #include <sys/param.h> #include <sys/bus.h> @@ -1202,7 +1202,7 @@ fw_rcv(struct fw_rcv_buf *rb) return; default: - aprint_error_dev(rb->fc->bdev, "unknow tcode %d\n", tcode); + aprint_error_dev(rb->fc->bdev, "unknown tcode %d\n", tcode); break; } } |
