Module Name:    src
Committed By:   andvar
Date:           Sun Sep  1 19:56:18 UTC 2024

Modified Files:
        src/sys/dev/ic: msm6242b.c
        src/sys/kern: subr_lwp_specificdata.c

Log Message:
s/specifc/specific/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/ic/msm6242b.c
cvs rdiff -u -r1.4 -r1.5 src/sys/kern/subr_lwp_specificdata.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/dev/ic/msm6242b.c
diff -u src/sys/dev/ic/msm6242b.c:1.4 src/sys/dev/ic/msm6242b.c:1.5
--- src/sys/dev/ic/msm6242b.c:1.4	Tue Feb  6 13:26:32 2018
+++ src/sys/dev/ic/msm6242b.c	Sun Sep  1 19:56:18 2024
@@ -1,4 +1,4 @@
-/*      $NetBSD: msm6242b.c,v 1.4 2018/02/06 13:26:32 rin Exp $ */
+/*      $NetBSD: msm6242b.c,v 1.5 2024/09/01 19:56:18 andvar Exp $ */
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,11 +30,11 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msm6242b.c,v 1.4 2018/02/06 13:26:32 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msm6242b.c,v 1.5 2024/09/01 19:56:18 andvar Exp $");
 
 /* 
  * Driver for OKI MSM6242B Real Time Clock. Somewhat based on an ancient, amiga
- * specifc a2kbbc driver (which was turned into frontend to this driver).
+ * specific a2kbbc driver (which was turned into frontend to this driver).
  */
 
 #include <sys/param.h>

Index: src/sys/kern/subr_lwp_specificdata.c
diff -u src/sys/kern/subr_lwp_specificdata.c:1.4 src/sys/kern/subr_lwp_specificdata.c:1.5
--- src/sys/kern/subr_lwp_specificdata.c:1.4	Fri May 17 03:34:26 2019
+++ src/sys/kern/subr_lwp_specificdata.c	Sun Sep  1 19:56:18 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_lwp_specificdata.c,v 1.4 2019/05/17 03:34:26 ozaki-r Exp $	*/
+/*	$NetBSD: subr_lwp_specificdata.c,v 1.5 2024/09/01 19:56:18 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 #define _LWP_API_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_lwp_specificdata.c,v 1.4 2019/05/17 03:34:26 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_lwp_specificdata.c,v 1.5 2024/09/01 19:56:18 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/lwp.h>
@@ -97,7 +97,7 @@ lwp_finispecific(struct lwp *l)
  *
  *	Note: LWP specific data is NOT INTERLOCKED.  An LWP should access
  *	only its OWN SPECIFIC DATA.  If it is necessary to access another
- *	LWP's specifc data, care must be taken to ensure that doing so
+ *	LWP's specific data, care must be taken to ensure that doing so
  *	would not cause internal data structure inconsistency (i.e. caller
  *	can guarantee that the target LWP is not inside an lwp_getspecific()
  *	or lwp_setspecific() call).

Reply via email to