Source-Changes-HG archive

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

[src/trunk]: src/sys/dev Whitespace



details:   https://anonhg.NetBSD.org/src/rev/6c68677d98a2
branches:  trunk
changeset: 339509:6c68677d98a2
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Jul 26 07:23:10 2015 +0000

description:
Whitespace

diffstat:

 sys/dev/ldvar.h |  30 +++++++++++++++---------------
 1 files changed, 15 insertions(+), 15 deletions(-)

diffs (53 lines):

diff -r 432624bf6d3d -r 6c68677d98a2 sys/dev/ldvar.h
--- a/sys/dev/ldvar.h   Sun Jul 26 02:29:44 2015 +0000
+++ b/sys/dev/ldvar.h   Sun Jul 26 07:23:10 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ldvar.h,v 1.23 2015/05/02 08:00:08 mlelstv Exp $       */
+/*     $NetBSD: ldvar.h,v 1.24 2015/07/26 07:23:10 skrll Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -38,29 +38,29 @@
 #include <dev/dkvar.h> /* for dk_softc */
 
 struct ld_softc {
-       struct  dk_softc sc_dksc;
-       kmutex_t sc_mutex;
+       struct dk_softc sc_dksc;
+       kmutex_t        sc_mutex;
        krndsource_t    sc_rnd_source;
 
-       int     sc_queuecnt;            /* current h/w queue depth */
-       int     sc_ncylinders;          /* # cylinders */
-       int     sc_nheads;              /* # heads */
-       int     sc_nsectors;            /* # sectors per track */
+       int             sc_queuecnt;    /* current h/w queue depth */
+       int             sc_ncylinders;  /* # cylinders */
+       int             sc_nheads;      /* # heads */
+       int             sc_nsectors;    /* # sectors per track */
        uint64_t        sc_disksize512;
 
        /*
         * The following are filled by hardware specific attachment code.
         */
        device_t        sc_dv;
-       int     sc_flags;               /* control flags */
-       uint64_t        sc_secperunit;          /* # sectors in total */
-       int     sc_secsize;             /* sector size in bytes */
-       int     sc_maxxfer;             /* max xfer size in bytes */
-       int     sc_maxqueuecnt;         /* maximum h/w queue depth */
+       int             sc_flags;       /* control flags */
+       uint64_t        sc_secperunit;  /* # sectors in total */
+       int             sc_secsize;     /* sector size in bytes */
+       int             sc_maxxfer;     /* max xfer size in bytes */
+       int             sc_maxqueuecnt; /* maximum h/w queue depth */
 
-       int     (*sc_dump)(struct ld_softc *, void *, int, int);
-       int     (*sc_flush)(struct ld_softc *, int);
-       int     (*sc_start)(struct ld_softc *, struct buf *);
+       int             (*sc_dump)(struct ld_softc *, void *, int, int);
+       int             (*sc_flush)(struct ld_softc *, int);
+       int             (*sc_start)(struct ld_softc *, struct buf *);
 };
 
 /* sc_flags */



Home | Main Index | Thread Index | Old Index