Module Name:    src
Committed By:   skrll
Date:           Wed Mar 23 22:12:03 UTC 2016

Modified Files:
        src/sys/dev [nick-nhusb]: audio.c

Log Message:
Tweak comment


To generate a diff of this commit:
cvs rdiff -u -r1.266 -r1.266.2.1 src/sys/dev/audio.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/audio.c
diff -u src/sys/dev/audio.c:1.266 src/sys/dev/audio.c:1.266.2.1
--- src/sys/dev/audio.c:1.266	Tue Nov 18 01:50:12 2014
+++ src/sys/dev/audio.c	Wed Mar 23 22:12:03 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: audio.c,v 1.266 2014/11/18 01:50:12 jmcneill Exp $	*/
+/*	$NetBSD: audio.c,v 1.266.2.1 2016/03/23 22:12:03 skrll Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -99,9 +99,9 @@
  *   LONG TERM SLEEPS MUST NOT OCCUR WITH THIS LOCK HELD.
  *
  * - sc_intr_lock, provided by the underlying driver.  This may be either a
- *   spinlock (at IPL_SCHED or IPL_VM) or an adaptive lock (IPL_NONE),
- *   returned in the first parameter to hw_if->get_locks().  It is known as
- *   the "interrupt lock".
+ *   spinlock (at IPL_SCHED or IPL_VM) or an adaptive lock (IPL_NONE or
+ *   IPL_SOFT*), returned in the first parameter to hw_if->get_locks().  It
+ *   is known as the "interrupt lock".
  *
  *   It provides atomic access to the device's hardware state, and to audio
  *   channel data that may be accessed by the hardware driver's ISR.
@@ -155,7 +155,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.266 2014/11/18 01:50:12 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.266.2.1 2016/03/23 22:12:03 skrll Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0

Reply via email to