From 1dc32700a0664f9e6bd74da237afe3505f284c5f Mon Sep 17 00:00:00 2001 From: isaki Date: Sat, 16 Mar 2019 04:36:19 +0000 Subject: 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. --- sys/dev/isa/aria.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') 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 -__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 #include @@ -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, -- cgit