Module Name: src
Committed By: riastradh
Date: Thu Mar 3 07:31:24 UTC 2022
Modified Files:
src/sys/sys: param.h
Log Message:
Welcome to NetBSD 9.99.94!
- usbnet(9) overhaul.
- USB host controller interface API and ABI simplifications.
- usbdi(9) additions -- usbd_suspend_pipe, usbd_resume_pipe.
- video(9) change -- video_attach_mi takes explicit cookie argument.
- driver(9) addition -- device_set_private, in preparation for opaque
struct device.
While here, fix typo noted by pgoyette@ -- `privilege', not
`priviledge'.
To generate a diff of this commit:
cvs rdiff -u -r1.706 -r1.707 src/sys/sys/param.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/sys/param.h
diff -u src/sys/sys/param.h:1.706 src/sys/sys/param.h:1.707
--- src/sys/sys/param.h:1.706 Tue Dec 21 18:59:22 2021
+++ src/sys/sys/param.h Thu Mar 3 07:31:24 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.706 2021/12/21 18:59:22 thorpej Exp $ */
+/* $NetBSD: param.h,v 1.707 2022/03/03 07:31:24 riastradh Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 999009300 /* NetBSD 9.99.93 */
+#define __NetBSD_Version__ 999009400 /* NetBSD 9.99.94 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)
@@ -88,8 +88,8 @@
/*
* These macros determine if we are running in protected mode or not.
- * _HARDKERNEL: code uses kernel namespace and runs in hw priviledged mode
- * _SOFTKERNEL: code uses kernel namespace but runs without hw priviledges
+ * _HARDKERNEL: code uses kernel namespace and runs in hw privileged mode
+ * _SOFTKERNEL: code uses kernel namespace but runs without hw privileges
*/
#if defined(_KERNEL) && !defined(_RUMPKERNEL)
#define _HARDKERNEL