Module Name: src
Committed By: andvar
Date: Mon Jul 31 20:48:04 UTC 2023
Modified Files:
src/sys/arch/hppa/spmath: dfadd.c dfsub.c sfadd.c sfsub.c
src/sys/dev/ic: igsfbreg.h
Log Message:
fix typos in comments, mainly s/denomalized/denormalized/.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/hppa/spmath/dfadd.c \
src/sys/arch/hppa/spmath/dfsub.c src/sys/arch/hppa/spmath/sfadd.c \
src/sys/arch/hppa/spmath/sfsub.c
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/igsfbreg.h
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/hppa/spmath/dfadd.c
diff -u src/sys/arch/hppa/spmath/dfadd.c:1.6 src/sys/arch/hppa/spmath/dfadd.c:1.7
--- src/sys/arch/hppa/spmath/dfadd.c:1.6 Mon Jan 17 20:56:02 2022
+++ src/sys/arch/hppa/spmath/dfadd.c Mon Jul 31 20:48:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: dfadd.c,v 1.6 2022/01/17 20:56:02 andvar Exp $ */
+/* $NetBSD: dfadd.c,v 1.7 2023/07/31 20:48:04 andvar Exp $ */
/* $OpenBSD: dfadd.c,v 1.4 2001/03/29 03:58:17 mickey Exp $ */
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dfadd.c,v 1.6 2022/01/17 20:56:02 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dfadd.c,v 1.7 2023/07/31 20:48:04 andvar Exp $");
#include "../spmath/float.h"
#include "../spmath/dbl_float.h"
@@ -268,7 +268,7 @@ dbl_fadd(dbl_floating_point *leftptr, db
return(NOEXCEPTION);
}
right_exponent = 1; /* Set exponent to reflect different bias
- * with denomalized numbers. */
+ * with denormalized numbers. */
}
else
{
Index: src/sys/arch/hppa/spmath/dfsub.c
diff -u src/sys/arch/hppa/spmath/dfsub.c:1.6 src/sys/arch/hppa/spmath/dfsub.c:1.7
--- src/sys/arch/hppa/spmath/dfsub.c:1.6 Mon Jan 17 20:56:02 2022
+++ src/sys/arch/hppa/spmath/dfsub.c Mon Jul 31 20:48:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: dfsub.c,v 1.6 2022/01/17 20:56:02 andvar Exp $ */
+/* $NetBSD: dfsub.c,v 1.7 2023/07/31 20:48:04 andvar Exp $ */
/* $OpenBSD: dfsub.c,v 1.4 2001/03/29 03:58:17 mickey Exp $ */
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dfsub.c,v 1.6 2022/01/17 20:56:02 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dfsub.c,v 1.7 2023/07/31 20:48:04 andvar Exp $");
#include "../spmath/float.h"
#include "../spmath/dbl_float.h"
@@ -271,7 +271,7 @@ dbl_fsub(dbl_floating_point *leftptr, db
return(NOEXCEPTION);
}
right_exponent = 1; /* Set exponent to reflect different bias
- * with denomalized numbers. */
+ * with denormalized numbers. */
}
else
{
Index: src/sys/arch/hppa/spmath/sfadd.c
diff -u src/sys/arch/hppa/spmath/sfadd.c:1.6 src/sys/arch/hppa/spmath/sfadd.c:1.7
--- src/sys/arch/hppa/spmath/sfadd.c:1.6 Mon Jan 17 20:56:02 2022
+++ src/sys/arch/hppa/spmath/sfadd.c Mon Jul 31 20:48:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: sfadd.c,v 1.6 2022/01/17 20:56:02 andvar Exp $ */
+/* $NetBSD: sfadd.c,v 1.7 2023/07/31 20:48:04 andvar Exp $ */
/* $OpenBSD: sfadd.c,v 1.4 2001/03/29 03:58:19 mickey Exp $ */
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sfadd.c,v 1.6 2022/01/17 20:56:02 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sfadd.c,v 1.7 2023/07/31 20:48:04 andvar Exp $");
#include "../spmath/float.h"
#include "../spmath/sgl_float.h"
@@ -264,7 +264,7 @@ sgl_fadd(sgl_floating_point *leftptr, sg
return(NOEXCEPTION);
}
right_exponent = 1; /* Set exponent to reflect different bias
- * with denomalized numbers. */
+ * with denormalized numbers. */
}
else
{
Index: src/sys/arch/hppa/spmath/sfsub.c
diff -u src/sys/arch/hppa/spmath/sfsub.c:1.6 src/sys/arch/hppa/spmath/sfsub.c:1.7
--- src/sys/arch/hppa/spmath/sfsub.c:1.6 Mon Jan 17 20:56:02 2022
+++ src/sys/arch/hppa/spmath/sfsub.c Mon Jul 31 20:48:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: sfsub.c,v 1.6 2022/01/17 20:56:02 andvar Exp $ */
+/* $NetBSD: sfsub.c,v 1.7 2023/07/31 20:48:04 andvar Exp $ */
/* $OpenBSD: sfsub.c,v 1.4 2001/03/29 03:58:19 mickey Exp $ */
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sfsub.c,v 1.6 2022/01/17 20:56:02 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sfsub.c,v 1.7 2023/07/31 20:48:04 andvar Exp $");
#include "../spmath/float.h"
#include "../spmath/sgl_float.h"
@@ -267,7 +267,7 @@ sgl_fsub(sgl_floating_point *leftptr, sg
return(NOEXCEPTION);
}
right_exponent = 1; /* Set exponent to reflect different bias
- * with denomalized numbers. */
+ * with denormalized numbers. */
}
else
{
Index: src/sys/dev/ic/igsfbreg.h
diff -u src/sys/dev/ic/igsfbreg.h:1.8 src/sys/dev/ic/igsfbreg.h:1.9
--- src/sys/dev/ic/igsfbreg.h:1.8 Wed Nov 11 17:01:17 2009
+++ src/sys/dev/ic/igsfbreg.h Mon Jul 31 20:48:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: igsfbreg.h,v 1.8 2009/11/11 17:01:17 macallan Exp $ */
+/* $NetBSD: igsfbreg.h,v 1.9 2023/07/31 20:48:04 andvar Exp $ */
/*
* Copyright (c) 2002 Valeriy E. Ushakov
@@ -181,7 +181,7 @@
/*
* Linear Address registers
- * PCI: don't write directly, just use nomral PCI configuration
+ * PCI: don't write directly, just use normal PCI configuration
* ISA: only bits [23..20] are programmable, the rest MBZ
*/
#define IGS_EXT_LINA_LO 0x34 /* [3..0] -> [23..20] */