Module Name: src
Committed By: skrll
Date: Sun Oct 18 16:28:57 UTC 2020
Modified Files:
src/sys/arch/arm/arm: bootconfig.c
src/sys/arch/arm/include: bootconfig.h
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/arm/bootconfig.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/include/bootconfig.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/arch/arm/arm/bootconfig.c
diff -u src/sys/arch/arm/arm/bootconfig.c:1.12 src/sys/arch/arm/arm/bootconfig.c:1.13
--- src/sys/arch/arm/arm/bootconfig.c:1.12 Fri Jul 10 12:25:08 2020
+++ src/sys/arch/arm/arm/bootconfig.c Sun Oct 18 16:28:57 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: bootconfig.c,v 1.12 2020/07/10 12:25:08 skrll Exp $ */
+/* $NetBSD: bootconfig.c,v 1.13 2020/10/18 16:28:57 skrll Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@@ -40,7 +40,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: bootconfig.c,v 1.12 2020/07/10 12:25:08 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bootconfig.c,v 1.13 2020/10/18 16:28:57 skrll Exp $");
#include <sys/systm.h>
#include <sys/kmem.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: bootconfig.c
#include <net/if_ether.h>
#endif
-/*
+/*
* Function to identify and process different types of boot argument
* Note, results may contain trailing data, eg:
* get_bootconf_option("cow=moo milk=1", "moo", BOOTOPT_TYPE_STRING, &ptr)
@@ -109,7 +109,7 @@ get_bootconf_option(char *opts, const ch
break;
case BOOTOPT_TYPE_STRING :
*((char **)result) = ptr;
- break;
+ break;
case BOOTOPT_TYPE_INT :
*((int *)result) =
(u_int)strtoul(ptr, NULL, 10);
Index: src/sys/arch/arm/include/bootconfig.h
diff -u src/sys/arch/arm/include/bootconfig.h:1.9 src/sys/arch/arm/include/bootconfig.h:1.10
--- src/sys/arch/arm/include/bootconfig.h:1.9 Sat Mar 3 16:11:22 2018
+++ src/sys/arch/arm/include/bootconfig.h Sun Oct 18 16:28:57 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: bootconfig.h,v 1.9 2018/03/03 16:11:22 skrll Exp $ */
+/* $NetBSD: bootconfig.h,v 1.10 2020/10/18 16:28:57 skrll Exp $ */
/*
* Copyright (c) 1994 Mark Brinicombe.
@@ -49,7 +49,7 @@
#define BOOTOPT_TYPE_MASK 7
struct boot_physmem {
- paddr_t bp_start; /* starting PFN (not address) */
+ paddr_t bp_start; /* starting PFN (not address) */
psize_t bp_pages; /* # of pages */
u_int bp_freelist; /* VM_FREELIST_ * */
u_int bp_flags;