Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/mips/mips Trailing whitespace
details: https://anonhg.NetBSD.org/src/rev/1753ff4cb418
branches: trunk
changeset: 936652:1753ff4cb418
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Aug 01 09:26:49 2020 +0000
description:
Trailing whitespace
diffstat:
common/lib/libc/arch/mips/atomic/atomic_add.S | 6 +++---
common/lib/libc/arch/mips/atomic/atomic_and.S | 6 +++---
common/lib/libc/arch/mips/atomic/atomic_cas.S | 6 +++---
common/lib/libc/arch/mips/atomic/atomic_cas_up.S | 4 ++--
common/lib/libc/arch/mips/atomic/atomic_dec.S | 6 +++---
common/lib/libc/arch/mips/atomic/atomic_inc.S | 6 +++---
common/lib/libc/arch/mips/atomic/atomic_op_asm.h | 4 ++--
common/lib/libc/arch/mips/atomic/atomic_or.S | 4 ++--
common/lib/libc/arch/mips/atomic/atomic_swap.S | 6 +++---
common/lib/libc/arch/mips/atomic/membar_ops.S | 4 ++--
sys/arch/mips/mips/db_interface.c | 22 +++++++++++-----------
11 files changed, 37 insertions(+), 37 deletions(-)
diffs (truncated from 317 to 300 lines):
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_add.S
--- a/common/lib/libc/arch/mips/atomic/atomic_add.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_add.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_add.S,v 1.5 2015/06/01 23:16:54 matt Exp $ */
+/* $NetBSD: atomic_add.S,v 1.6 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_add.S,v 1.5 2015/06/01 23:16:54 matt Exp $")
+RCSID("$NetBSD: atomic_add.S,v 1.6 2020/08/01 09:26:49 skrll Exp $")
.text
.set noreorder
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_and.S
--- a/common/lib/libc/arch/mips/atomic/atomic_and.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_and.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_and.S,v 1.4 2012/03/14 16:50:34 christos Exp $ */
+/* $NetBSD: atomic_and.S,v 1.5 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_and.S,v 1.4 2012/03/14 16:50:34 christos Exp $")
+RCSID("$NetBSD: atomic_and.S,v 1.5 2020/08/01 09:26:49 skrll Exp $")
.text
.set noreorder
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_cas.S
--- a/common/lib/libc/arch/mips/atomic/atomic_cas.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_cas.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_cas.S,v 1.6 2019/02/20 05:25:12 rin Exp $ */
+/* $NetBSD: atomic_cas.S,v 1.7 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_cas.S,v 1.6 2019/02/20 05:25:12 rin Exp $")
+RCSID("$NetBSD: atomic_cas.S,v 1.7 2020/08/01 09:26:49 skrll Exp $")
.text
.set noat
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_cas_up.S
--- a/common/lib/libc/arch/mips/atomic/atomic_cas_up.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_cas_up.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_cas_up.S,v 1.2 2008/05/25 15:56:12 chs Exp $ */
+/* $NetBSD: atomic_cas_up.S,v 1.3 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_dec.S
--- a/common/lib/libc/arch/mips/atomic/atomic_dec.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_dec.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_dec.S,v 1.5 2015/06/01 23:16:54 matt Exp $ */
+/* $NetBSD: atomic_dec.S,v 1.6 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_dec.S,v 1.5 2015/06/01 23:16:54 matt Exp $")
+RCSID("$NetBSD: atomic_dec.S,v 1.6 2020/08/01 09:26:49 skrll Exp $")
.text
.set noreorder
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_inc.S
--- a/common/lib/libc/arch/mips/atomic/atomic_inc.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_inc.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_inc.S,v 1.5 2015/06/01 23:16:54 matt Exp $ */
+/* $NetBSD: atomic_inc.S,v 1.6 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_inc.S,v 1.5 2015/06/01 23:16:54 matt Exp $")
+RCSID("$NetBSD: atomic_inc.S,v 1.6 2020/08/01 09:26:49 skrll Exp $")
.text
.set noreorder
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_op_asm.h
--- a/common/lib/libc/arch/mips/atomic/atomic_op_asm.h Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_op_asm.h Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_op_asm.h,v 1.3 2015/06/01 23:16:54 matt Exp $ */
+/* $NetBSD: atomic_op_asm.h,v 1.4 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -15,7 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_or.S
--- a/common/lib/libc/arch/mips/atomic/atomic_or.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_or.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_or.S,v 1.4 2012/03/14 16:50:34 christos Exp $ */
+/* $NetBSD: atomic_or.S,v 1.5 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/atomic_swap.S
--- a/common/lib/libc/arch/mips/atomic/atomic_swap.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/atomic_swap.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_swap.S,v 1.5 2015/06/01 23:16:54 matt Exp $ */
+/* $NetBSD: atomic_swap.S,v 1.6 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -12,7 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -29,7 +29,7 @@
#include <machine/asm.h>
#include "atomic_op_asm.h"
-RCSID("$NetBSD: atomic_swap.S,v 1.5 2015/06/01 23:16:54 matt Exp $")
+RCSID("$NetBSD: atomic_swap.S,v 1.6 2020/08/01 09:26:49 skrll Exp $")
.text
.set noreorder
diff -r dd7e6a5880c1 -r 1753ff4cb418 common/lib/libc/arch/mips/atomic/membar_ops.S
--- a/common/lib/libc/arch/mips/atomic/membar_ops.S Sat Aug 01 09:25:36 2020 +0000
+++ b/common/lib/libc/arch/mips/atomic/membar_ops.S Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: membar_ops.S,v 1.8 2015/06/23 20:56:17 matt Exp $ */
+/* $NetBSD: membar_ops.S,v 1.9 2020/08/01 09:26:49 skrll Exp $ */
/*-
* Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@@ -15,7 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
diff -r dd7e6a5880c1 -r 1753ff4cb418 sys/arch/mips/mips/db_interface.c
--- a/sys/arch/mips/mips/db_interface.c Sat Aug 01 09:25:36 2020 +0000
+++ b/sys/arch/mips/mips/db_interface.c Sat Aug 01 09:26:49 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: db_interface.c,v 1.86 2020/07/26 07:57:06 simonb Exp $ */
+/* $NetBSD: db_interface.c,v 1.87 2020/08/01 09:29:18 skrll Exp $ */
/*
* Mach Operating System
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.86 2020/07/26 07:57:06 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.87 2020/08/01 09:29:18 skrll Exp $");
#include "opt_multiprocessor.h"
#include "opt_cputype.h" /* which mips CPUs do we support? */
@@ -702,7 +702,7 @@
"mfcr %0,%1 \n\t" \
".set pop \n\t" \
: "=r"(value) : "r"(addr));
-
+
db_printf("control reg 0x%" DDB_EXPR_FMT "x = 0x%" PRIx64 "\n",
addr, value);
}
@@ -749,7 +749,7 @@
{
CPU_INFO_ITERATOR cii;
struct cpu_info *ci;
-
+
if (!have_addr) {
db_printf("CPU not specific\n");
return;
@@ -803,7 +803,7 @@
#endif /* (MIPS32 + MIPS32R2 + MIPS64 + MIPS64R2) > 0 */
{ DDB_ADD_CMD("kvtop", db_kvtophys_cmd, 0,
"Print the physical address for a given kernel virtual address",
- "address",
+ "address",
" address:\tvirtual address to look up") },
{ DDB_ADD_CMD("tlb", db_tlbdump_cmd, 0,
"Print out TLB entries. (only works with options DEBUG)",
@@ -991,7 +991,7 @@
if (bd == false)
return (pc + 4);
-
+
if (pc < MIPS_KSEG0_START)
ins = mips_ufetch32((void *)pc);
else
@@ -1005,15 +1005,15 @@
#ifdef MULTIPROCESSOR
-bool
+bool
ddb_running_on_this_cpu_p(void)
-{
+{
return ddb_cpu == cpu_number();
}
Home |
Main Index |
Thread Index |
Old Index