From e9572cd91e8c2b32fdfafa9291efdcdb94426b3f Mon Sep 17 00:00:00 2001 From: andvar Date: Sun, 19 Sep 2021 10:34:06 +0000 Subject: fix various typos in comments, messages and documentation. --- sys/dev/microcode/aic7xxx/aic79xx.seq | 4 ++-- sys/dev/microcode/aic7xxx/aicasm_gram.y | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev/microcode') diff --git a/sys/dev/microcode/aic7xxx/aic79xx.seq b/sys/dev/microcode/aic7xxx/aic79xx.seq index c37b19972a3..67478aa1812 100644 --- a/sys/dev/microcode/aic7xxx/aic79xx.seq +++ b/sys/dev/microcode/aic7xxx/aic79xx.seq @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx.seq,v 1.14 2021/09/16 21:29:41 andvar Exp $ */ +/* $NetBSD: aic79xx.seq,v 1.15 2021/09/19 10:34:09 andvar Exp $ */ /* * Adaptec U320 device driver firmware for Linux and FreeBSD. @@ -1926,7 +1926,7 @@ pkt_status_check_nonpackreq: /* * The unexpected nonpkt phase handler assumes that any * data channel use will have a FIFO reference count. It - * turns out that the status handler doesn't need a refernce + * turns out that the status handler doesn't need a reference * count since the status received flag, and thus completion * processing, cannot be set until the handler is finished. * We increment the count here to make the nonpkt handler diff --git a/sys/dev/microcode/aic7xxx/aicasm_gram.y b/sys/dev/microcode/aic7xxx/aicasm_gram.y index b1ac57d169b..3e2cf0fe1d3 100644 --- a/sys/dev/microcode/aic7xxx/aicasm_gram.y +++ b/sys/dev/microcode/aic7xxx/aicasm_gram.y @@ -1,5 +1,5 @@ %{ -/* $NetBSD: aicasm_gram.y,v 1.7 2020/06/27 16:48:01 jdolecek Exp $ */ +/* $NetBSD: aicasm_gram.y,v 1.8 2021/09/19 10:34:09 andvar Exp $ */ /* * Parser for the Aic7xxx SCSI Host adapter sequencer assembler. @@ -1757,7 +1757,7 @@ format_3_instr(int opcode, symbol_ref_t *src, instr = seq_alloc(); f3_instr = &instr->format.format3; if (address->symbol == NULL) { - /* 'dot' referrence. Use the current instruction pointer */ + /* 'dot' reference. Use the current instruction pointer */ addr = instruction_ptr + address->offset; } else if (address->symbol->type == UNINITIALIZED) { /* forward reference */ -- cgit