Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/tc Fix white space and indent.



details:   https://anonhg.NetBSD.org/src/rev/a7adb64ec63c
branches:  trunk
changeset: 943235:a7adb64ec63c
user:      isaki <isaki%NetBSD.org@localhost>
date:      Sat Aug 29 03:24:31 2020 +0000

description:
Fix white space and indent.

diffstat:

 sys/dev/tc/bba.c |  9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diffs (44 lines):

diff -r e3e43f785209 -r a7adb64ec63c sys/dev/tc/bba.c
--- a/sys/dev/tc/bba.c  Fri Aug 28 22:27:51 2020 +0000
+++ b/sys/dev/tc/bba.c  Sat Aug 29 03:24:31 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bba.c,v 1.44 2019/06/08 08:02:38 isaki Exp $ */
+/* $NetBSD: bba.c,v 1.45 2020/08/29 03:24:31 isaki Exp $ */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 /* maxine/alpha baseboard audio (bba) */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bba.c,v 1.44 2019/06/08 08:02:38 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bba.c,v 1.45 2020/08/29 03:24:31 isaki Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -230,7 +230,7 @@
 
        printf("\n");
 
-       bba_reset(sc,1);
+       bba_reset(sc, 1);
 
        /*
         * Set up glue for MI code early; we use some of it here.
@@ -285,7 +285,6 @@
                ssr |= IOASIC_CSR_ISDN_ENABLE;
                bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr);
        }
-
 }
 
 
@@ -468,7 +467,7 @@
 
        if (bus_dmamap_load(sc->sc_dmat, d->dmam, start,
            (char *)end - (char *)start, NULL, BUS_DMA_WRITE|BUS_DMA_NOWAIT)) {
-           printf("bba_trigger_output: can't load DMA map\n");
+               printf("bba_trigger_output: can't load DMA map\n");
                goto bad;
        }
        state |= 2;



Home | Main Index | Thread Index | Old Index