Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Welcome to NetBSD 9.99.94!



details:   https://anonhg.NetBSD.org/src/rev/3d8669299780
branches:  trunk
changeset: 362589:3d8669299780
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Thu Mar 03 07:31:24 2022 +0000

description:
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'.

diffstat:

 sys/sys/param.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 55bfebd569c4 -r 3d8669299780 sys/sys/param.h
--- a/sys/sys/param.h   Thu Mar 03 06:28:26 2022 +0000
+++ b/sys/sys/param.h   Thu Mar 03 07:31:24 2022 +0000
@@ -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



Home | Main Index | Thread Index | Old Index