typo in comment

This commit is contained in:
dholland 2021-05-30 06:46:46 +00:00
parent 018653d490
commit 4bdf3741c4
2 changed files with 6 additions and 6 deletions

View File

@ -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 <arm/asm.h>
#include <arm/locore.h>
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 <sys/param.h> */
@ -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

View File

@ -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 <sys/cdefs.h>
__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)) {