From 4bdf3741c4ae27be0233efa582a6333940179921 Mon Sep 17 00:00:00 2001 From: dholland Date: Sun, 30 May 2021 06:46:46 +0000 Subject: [PATCH] typo in comment --- sys/arch/arm/arm32/cpuswitch.S | 6 +++--- sys/dev/scsipi/sd.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/arch/arm/arm32/cpuswitch.S b/sys/arch/arm/arm32/cpuswitch.S index f2a529f56f8f..1ffda42dbd86 100644 --- a/sys/arch/arm/arm32/cpuswitch.S +++ b/sys/arch/arm/arm32/cpuswitch.S @@ -1,4 +1,4 @@ -/* $NetBSD: cpuswitch.S,v 1.104 2020/11/21 19:44:52 skrll Exp $ */ +/* $NetBSD: cpuswitch.S,v 1.105 2021/05/30 06:53:15 dholland Exp $ */ /* * Copyright 2003 Wasabi Systems, Inc. @@ -87,7 +87,7 @@ #include #include - RCSID("$NetBSD: cpuswitch.S,v 1.104 2020/11/21 19:44:52 skrll Exp $") + RCSID("$NetBSD: cpuswitch.S,v 1.105 2021/05/30 06:53:15 dholland Exp $") /* LINTSTUB: include */ @@ -136,7 +136,7 @@ ENTRY(cpu_switchto) mov ip, sp push {r4-r7, ip, lr} - /* move lwps into caller saved registers */ + /* move lwps into callee saved registers */ mov r6, r1 mov r4, r0 diff --git a/sys/dev/scsipi/sd.c b/sys/dev/scsipi/sd.c index 22fa809f54cc..7bd0d12c070b 100644 --- a/sys/dev/scsipi/sd.c +++ b/sys/dev/scsipi/sd.c @@ -1,4 +1,4 @@ -/* $NetBSD: sd.c,v 1.331 2021/02/10 16:30:01 christos Exp $ */ +/* $NetBSD: sd.c,v 1.332 2021/05/30 06:46:46 dholland Exp $ */ /*- * Copyright (c) 1998, 2003, 2004 The NetBSD Foundation, Inc. @@ -47,7 +47,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sd.c,v 1.331 2021/02/10 16:30:01 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sd.c,v 1.332 2021/05/30 06:46:46 dholland Exp $"); #ifdef _KERNEL_OPT #include "opt_scsi.h" @@ -681,7 +681,7 @@ sd_diskstart(device_t dev, struct buf *bp) /* * If the device has become invalid, abort all the * reads and writes until all files have been closed and - * re-opened + * re-opened. */ if (__predict_false( (periph->periph_flags & PERIPH_MEDIA_LOADED) == 0)) {