Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/audio Style fixes.



details:   https://anonhg.NetBSD.org/src/rev/e2a1b1489ff4
branches:  trunk
changeset: 942974:e2a1b1489ff4
user:      isaki <isaki%NetBSD.org@localhost>
date:      Sun Aug 23 04:07:23 2020 +0000

description:
Style fixes.

diffstat:

 sys/dev/audio/audio.c |  14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 742defa8b45e -r e2a1b1489ff4 sys/dev/audio/audio.c
--- a/sys/dev/audio/audio.c     Sun Aug 23 03:23:53 2020 +0000
+++ b/sys/dev/audio/audio.c     Sun Aug 23 04:07:23 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.75 2020/05/29 03:09:14 isaki Exp $ */
+/*     $NetBSD: audio.c,v 1.76 2020/08/23 04:07:23 isaki Exp $ */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -138,7 +138,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.75 2020/05/29 03:09:14 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.76 2020/08/23 04:07:23 isaki Exp $");
 
 #ifdef _KERNEL_OPT
 #include "audio.h"
@@ -901,13 +901,15 @@
                return;
        }
        if (has_playback) {
-               if ((hw_if->start_output == NULL && hw_if->trigger_output == NULL) ||
+               if ((hw_if->start_output == NULL &&
+                    hw_if->trigger_output == NULL) ||
                    hw_if->halt_output == NULL) {
                        aprint_error(": missing playback method\n");
                }
        }
        if (has_capture) {
-               if ((hw_if->start_input == NULL && hw_if->trigger_input == NULL) ||
+               if ((hw_if->start_input == NULL &&
+                    hw_if->trigger_input == NULL) ||
                    hw_if->halt_input == NULL) {
                        aprint_error(": missing capture method\n");
                }
@@ -6129,7 +6131,7 @@
 
        /*
         * Convert obsolete AUDIO_ENCODING_PCM encodings.
-        * 
+        *
         * AUDIO_ENCODING_PCM16 == AUDIO_ENCODING_LINEAR
         * So, it's always signed, as in SunOS.
         *
@@ -6432,7 +6434,7 @@
  * If fmt is included in the result of query_format, returns 0.
  * Otherwise returns EINVAL.
  * Must be called without sc_lock held.
- */ 
+ */
 static int
 audio_hw_validate_format(struct audio_softc *sc, int mode,
        const audio_format2_t *fmt)



Home | Main Index | Thread Index | Old Index