Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic Some more whitespace consistency / KNF



details:   https://anonhg.NetBSD.org/src/rev/de445eebac33
branches:  trunk
changeset: 948696:de445eebac33
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Dec 29 08:00:48 2020 +0000

description:
Some more whitespace consistency / KNF

diffstat:

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

diffs (44 lines):

diff -r 8975bdf62490 -r de445eebac33 sys/dev/ic/ahcisata_core.c
--- a/sys/dev/ic/ahcisata_core.c        Tue Dec 29 07:56:22 2020 +0000
+++ b/sys/dev/ic/ahcisata_core.c        Tue Dec 29 08:00:48 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ahcisata_core.c,v 1.93 2020/12/29 07:56:22 skrll Exp $ */
+/*     $NetBSD: ahcisata_core.c,v 1.94 2020/12/29 08:00:48 skrll Exp $ */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ahcisata_core.c,v 1.93 2020/12/29 07:56:22 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ahcisata_core.c,v 1.94 2020/12/29 08:00:48 skrll Exp $");
 
 #include <sys/types.h>
 #include <sys/malloc.h>
@@ -702,7 +702,6 @@
 
                        AHCIDEBUG_PRINT(("%s port %d: transfer aborted 0x%x\n",
                            AHCINAME(sc), chp->ch_channel, tfd), DEBUG_INTR);
-
                }
        } else {
                tfd = 0;
@@ -1170,7 +1169,7 @@
 
        cmd_tbl = achp->ahcic_cmd_tbl[slot];
        AHCIDEBUG_PRINT(("%s port %d tbl %p\n", AHCINAME(sc), chp->ch_channel,
-             cmd_tbl), DEBUG_XFERS);
+           cmd_tbl), DEBUG_XFERS);
 
        satafis_rhd_construct_cmd(ata_c, cmd_tbl->cmdt_cfis);
        cmd_tbl->cmdt_cfis[rhd_c] |= xfer->c_drive;
@@ -1763,7 +1762,7 @@
        bus_dmamap_sync(sc->sc_dmat, achp->ahcic_datad[slot], 0,
            achp->ahcic_datad[slot]->dm_mapsize,
            (op == BUS_DMA_READ) ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
-       for (seg = 0; seg <  achp->ahcic_datad[slot]->dm_nsegs; seg++) {
+       for (seg = 0; seg < achp->ahcic_datad[slot]->dm_nsegs; seg++) {
                cmd_tbl->cmdt_prd[seg].prd_dba = htole64(
                     achp->ahcic_datad[slot]->dm_segs[seg].ds_addr);
                cmd_tbl->cmdt_prd[seg].prd_dbc = htole32(



Home | Main Index | Thread Index | Old Index