summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorisaki <isaki@NetBSD.org>2019-03-16 04:36:19 +0000
committerisaki <isaki@NetBSD.org>2019-03-16 04:36:19 +0000
commit1dc32700a0664f9e6bd74da237afe3505f284c5f (patch)
tree34d4a2defb98ae8b4dc8f0d878b37fb63567bf16 /sys/dev/isa
parent878f1283281911b698743ee119a3faf040d358d8 (diff)
Swap wrong ordered halt_input and halt_output (since rev1.1).
But I guess that it didn't lead a big impact. Because hw_if->close is called immediately after that in most cases.
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/aria.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/aria.c b/sys/dev/isa/aria.c
index 167d881c795..e8eff68afe5 100644
--- a/sys/dev/isa/aria.c
+++ b/sys/dev/isa/aria.c
@@ -1,4 +1,4 @@
-/* $NetBSD: aria.c,v 1.37 2012/10/27 17:18:23 chs Exp $ */
+/* $NetBSD: aria.c,v 1.38 2019/03/16 04:36:19 isaki Exp $ */
/*-
* Copyright (c) 1995, 1996, 1998 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aria.c,v 1.37 2012/10/27 17:18:23 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aria.c,v 1.38 2019/03/16 04:36:19 isaki Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -212,8 +212,8 @@ const struct audio_hw_if aria_hw_if = {
NULL,
aria_start_output,
aria_start_input,
- aria_halt_input,
aria_halt_output,
+ aria_halt_input,
NULL,
aria_getdev,
NULL,