Module Name:    src
Committed By:   skrll
Date:           Sun Jul 26 07:23:10 UTC 2015

Modified Files:
        src/sys/dev: ldvar.h

Log Message:
Whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/ldvar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ldvar.h
diff -u src/sys/dev/ldvar.h:1.23 src/sys/dev/ldvar.h:1.24
--- src/sys/dev/ldvar.h:1.23	Sat May  2 08:00:08 2015
+++ src/sys/dev/ldvar.h	Sun Jul 26 07:23:10 2015
@@ -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_dump)(struct ld_softc *, void *, int, int);
-	int	(*sc_flush)(struct ld_softc *, int);
-	int	(*sc_start)(struct ld_softc *, struct buf *);
+	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 *);
 };
 
 /* sc_flags */

Reply via email to