Module Name: src
Committed By: skrll
Date: Sat Mar 29 15:48:02 UTC 2014
Modified Files:
src/sys/arch/arm/arm: db_trace.c
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/arm/arm/db_trace.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/arm/db_trace.c
diff -u src/sys/arch/arm/arm/db_trace.c:1.29 src/sys/arch/arm/arm/db_trace.c:1.30
--- src/sys/arch/arm/arm/db_trace.c:1.29 Sat Mar 29 15:47:40 2014
+++ src/sys/arch/arm/arm/db_trace.c Sat Mar 29 15:48:01 2014
@@ -1,37 +1,37 @@
-/* $NetBSD: db_trace.c,v 1.29 2014/03/29 15:47:40 skrll Exp $ */
+/* $NetBSD: db_trace.c,v 1.30 2014/03/29 15:48:01 skrll Exp $ */
-/*
+/*
* Copyright (c) 2000, 2001 Ben Harris
* Copyright (c) 1996 Scott K. Stevens
*
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
- *
+ *
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
- *
+ *
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
+ *
* Carnegie Mellon requests users of this software to return to
- *
+ *
* Software Distribution Coordinator or [email protected]
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
- *
+ *
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: db_trace.c,v 1.29 2014/03/29 15:47:40 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_trace.c,v 1.30 2014/03/29 15:48:01 skrll Exp $");
#include <sys/proc.h>
#include <arm/armreg.h>
@@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: db_trace.c,v
* a structure to represent them is a good idea.
*
* Here's the diagram from the APCS. Increasing address is _up_ the page.
- *
+ *
* save code pointer [fp] <- fp points to here
* return link value [fp, #-4]
* return sp value [fp, #-8]
@@ -70,9 +70,9 @@ __KERNEL_RCSID(0, "$NetBSD: db_trace.c,v
* [saved a2 value]
* [saved a1 value]
*
- * The save code pointer points twelve bytes beyond the start of the
- * code sequence (usually a single STM) that created the stack frame.
- * We have to disassemble it if we want to know which of the optional
+ * The save code pointer points twelve bytes beyond the start of the
+ * code sequence (usually a single STM) that created the stack frame.
+ * We have to disassemble it if we want to know which of the optional
* fields are actually present.
*/
@@ -241,7 +241,7 @@ db_stack_trace_print(db_expr_t addr, boo
#else
pc = frame[FR_RLV];
#endif
-
+
frame = (uint32_t *)(frame[FR_RFP]);
if (INKERNEL((int)frame)) {