CVS commit: src/sys/arch/shark/shark

2023-06-29 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Jun 29 21:01:21 UTC 2023

Modified Files:
src/sys/arch/shark/shark: scr.c

Log Message:
s/determin /determine / in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/shark/shark/scr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/shark/shark

2023-06-29 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Jun 29 21:01:21 UTC 2023

Modified Files:
src/sys/arch/shark/shark: scr.c

Log Message:
s/determin /determine / in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/shark/shark/scr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/shark/shark/scr.c
diff -u src/sys/arch/shark/shark/scr.c:1.35 src/sys/arch/shark/shark/scr.c:1.36
--- src/sys/arch/shark/shark/scr.c:1.35	Fri Apr  8 10:17:54 2022
+++ src/sys/arch/shark/shark/scr.c	Thu Jun 29 21:01:21 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: scr.c,v 1.35 2022/04/08 10:17:54 andvar Exp $	*/
+/*	$NetBSD: scr.c,v 1.36 2023/06/29 21:01:21 andvar Exp $	*/
 
 /*
  * Copyright 1997
@@ -102,7 +102,7 @@
 */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.35 2022/04/08 10:17:54 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.36 2023/06/29 21:01:21 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -2298,7 +2298,7 @@ static void   coldResetSM(struct scr_sof
 **  checked to see if it is 1/2 speed, and if so, the clock is changed
 **  and the state adjustes
 **
-**  At the end of the first byte we have to determin the logic being
+**  At the end of the first byte we have to determine the logic being
 **  used by the card, ie is it active high/low and msb/lsb.  
 **
 **



Re: CVS commit: src/sys/arch/shark/shark

2017-08-22 Thread Nick Hudson

On 08/22/17 22:23, Robert Elz wrote:

Module Name:src
Committed By:   kre
Date:   Tue Aug 22 21:23:58 UTC 2017

Modified Files:
src/sys/arch/shark/shark: sequoia.h

Log Message:
Add () around "1 << n' in #define's, without it ~NAME is "~1 << n" which is
not what is wanted at all (and which caused the << of a negative number issue.)
Making the values unsigned is harmless (perhaps even better) so those that
were changed are still that way.


Joerg should have used __BIT() in the first place...

Nick