Thu Mar 3 07:31:24 2022 UTC ()
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'.


(riastradh)
diff -r1.706 -r1.707 src/sys/sys/param.h

cvs diff -r1.706 -r1.707 src/sys/sys/param.h (expand / switch to context diff)
--- src/sys/sys/param.h 2021/12/21 18:59:22 1.706
+++ src/sys/sys/param.h 2022/03/03 07:31:24 1.707
@@ -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