Source-Changes-HG archive

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

[src/trunk]: src/sys/sys sys/rndsource.h: Fix whitespace.



details:   https://anonhg.NetBSD.org/src/rev/831569ecbfd7
branches:  trunk
changeset: 377540:831569ecbfd7
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Jul 16 10:36:11 2023 +0000

description:
sys/rndsource.h: Fix whitespace.

No functional change intended.

XXX pullup-10

diffstat:

 sys/sys/rndsource.h |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (30 lines):

diff -r af2f1934963c -r 831569ecbfd7 sys/sys/rndsource.h
--- a/sys/sys/rndsource.h       Sun Jul 16 10:36:02 2023 +0000
+++ b/sys/sys/rndsource.h       Sun Jul 16 10:36:11 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rndsource.h,v 1.8 2023/07/16 10:36:02 riastradh Exp $  */
+/*     $NetBSD: rndsource.h,v 1.9 2023/07/16 10:36:11 riastradh Exp $  */
 
 /*-
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -67,14 +67,14 @@ typedef struct rnd_delta_estimator {
  */
 struct krndsource {
        LIST_ENTRY(krndsource) list;    /* the linked list */
-        char            name[16];       /* device name */
+       char            name[16];       /* device name */
        rnd_delta_t     time_delta;     /* time samples added while cold */
        rnd_delta_t     value_delta;    /* value samples added whiel cold */
-        uint32_t        total;          /* number of bits added while cold */
-        uint32_t        type;           /* type, RND_TYPE_* */
-        uint32_t        flags;          /* flags, RND_FLAG_* */
-        void            *state;         /* percpu (struct rndsource_cpu *) */
-        size_t          test_cnt;       /* unused */
+       uint32_t        total;          /* number of bits added while cold */
+       uint32_t        type;           /* type, RND_TYPE_* */
+       uint32_t        flags;          /* flags, RND_FLAG_* */
+       void            *state;         /* percpu (struct rndsource_cpu *) */
+       size_t          test_cnt;       /* unused */
        void            (*get)(size_t, void *); /* pool wants N bytes (badly) */
        void            *getarg;        /* argument to get-function */
        void            (*enable)(struct krndsource *, bool); /* unused */



Home | Main Index | Thread Index | Old Index