Module Name: src
Committed By: skrll
Date: Sun Jan 29 10:08:38 UTC 2017
Modified Files:
src/sys/dev/usb [nick-nhusb]: umass.c
Log Message:
Fix a comment
To generate a diff of this commit:
cvs rdiff -u -r1.149.2.16 -r1.149.2.17 src/sys/dev/usb/umass.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/usb/umass.c
diff -u src/sys/dev/usb/umass.c:1.149.2.16 src/sys/dev/usb/umass.c:1.149.2.17
--- src/sys/dev/usb/umass.c:1.149.2.16 Mon Dec 5 10:55:18 2016
+++ src/sys/dev/usb/umass.c Sun Jan 29 10:08:38 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: umass.c,v 1.149.2.16 2016/12/05 10:55:18 skrll Exp $ */
+/* $NetBSD: umass.c,v 1.149.2.17 2017/01/29 10:08:38 skrll Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -108,8 +108,8 @@
* umass_*_reset.
*
* The reason for doing this is a) CAM performs a lot better this way and b) it
- * avoids using tsleep from interrupt context (for example after a failed
- * transfer).
+ * avoids sleeping in interrupt context which is prohibited (for example after a
+ * failed transfer).
*/
/*
@@ -124,7 +124,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.149.2.16 2016/12/05 10:55:18 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.149.2.17 2017/01/29 10:08:38 skrll Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"