Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/b19010ff4cf5
branches:  trunk
changeset: 827087:b19010ff4cf5
user:      skrll <skrll%NetBSD.org@localhost>
date:      Thu Oct 12 19:59:22 2017 +0000

description:
Trailing whitespace

diffstat:

 sys/arch/arm/pic/pic.c              |  14 +++++++-------
 sys/arch/evbarm/conf/GENERIC.common |   6 +++---
 2 files changed, 10 insertions(+), 10 deletions(-)

diffs (85 lines):

diff -r 4d455fa1f597 -r b19010ff4cf5 sys/arch/arm/pic/pic.c
--- a/sys/arch/arm/pic/pic.c    Thu Oct 12 18:27:38 2017 +0000
+++ b/sys/arch/arm/pic/pic.c    Thu Oct 12 19:59:22 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pic.c,v 1.40 2017/09/21 19:29:14 skrll Exp $   */
+/*     $NetBSD: pic.c,v 1.41 2017/10/12 19:59:22 skrll Exp $   */
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -33,7 +33,7 @@
 #include "opt_multiprocessor.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic.c,v 1.40 2017/09/21 19:29:14 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic.c,v 1.41 2017/10/12 19:59:22 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -103,7 +103,7 @@
 
 static kmutex_t pic_lock;
 size_t pic_sourcebase;
-static struct evcnt pic_deferral_ev = 
+static struct evcnt pic_deferral_ev =
     EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "deferred", "intr");
 EVCNT_ATTACH_STATIC(pic_deferral_ev);
 
@@ -215,7 +215,7 @@
 pic_handle_softint(void *arg)
 {
        void softint_switch(lwp_t *, int);
-       struct cpu_info * const ci = curcpu(); 
+       struct cpu_info * const ci = curcpu();
        const size_t softint = (size_t) arg;
        int s = splhigh();
        ci->ci_intr_depth--;    // don't count these as interrupts
@@ -283,7 +283,7 @@
                return ipl_mask;
 
        KASSERT((irq_base & 31) == 0);
-       
+
        (*pic->pic_ops->pic_block_irqs)(pic, irq_base, pending);
 
        atomic_or_32(ipending, pending);
@@ -697,7 +697,7 @@
         * Allocate a pointer to each cpu's evcnts and then, for each cpu,
         * allocate its evcnts and then attach an evcnt for each pin.
         * We can't allocate the evcnt structures directly since
-        * percpu will move the contents of percpu memory around and 
+        * percpu will move the contents of percpu memory around and
         * corrupt the pointers in the evcnts themselves.  Remember, any
         * problem can be solved with sufficient indirection.
         */
@@ -822,7 +822,7 @@
 unblock:
        (*pic->pic_ops->pic_unblock_irqs)(pic, is->is_irq & ~0x1f,
            __BIT(is->is_irq & 0x1f));
-       
+
        /* We're done. */
        return is;
 }
diff -r 4d455fa1f597 -r b19010ff4cf5 sys/arch/evbarm/conf/GENERIC.common
--- a/sys/arch/evbarm/conf/GENERIC.common       Thu Oct 12 18:27:38 2017 +0000
+++ b/sys/arch/evbarm/conf/GENERIC.common       Thu Oct 12 19:59:22 2017 +0000
@@ -1,5 +1,5 @@
 #
-#      $NetBSD: GENERIC.common,v 1.22 2017/09/14 07:58:40 mrg Exp $
+#      $NetBSD: GENERIC.common,v 1.23 2017/10/12 20:03:38 skrll Exp $
 #
 #      GENERIC evbarm kernel config (template)
 #
@@ -159,9 +159,9 @@
 pseudo-device   veriexec
 #
 # Uncomment the fingerprint methods below that are desired. Note that
-# removing fingerprint methods will have almost no impact on the kernel  
+# removing fingerprint methods will have almost no impact on the kernel
 # code size.
-# 
+#
 options VERIFIED_EXEC_FP_SHA256
 options VERIFIED_EXEC_FP_SHA384
 options VERIFIED_EXEC_FP_SHA512



Home | Main Index | Thread Index | Old Index