Trailing whitespace

This commit is contained in:
skrll 2020-10-18 16:28:57 +00:00
parent 0be063820a
commit 77314eed7d
2 changed files with 6 additions and 6 deletions

View File

@ -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,v 1.12 2020/07/10 12:25:08 skrll Exp $"
#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 char *opt, int type, void *result)
break;
case BOOTOPT_TYPE_STRING :
*((char **)result) = ptr;
break;
break;
case BOOTOPT_TYPE_INT :
*((int *)result) =
(u_int)strtoul(ptr, NULL, 10);

View File

@ -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;