Trailing whitespace

This commit is contained in:
skrll 2023-10-06 11:45:37 +00:00
parent 6ec65fcfd4
commit f9ac86e626
15 changed files with 49 additions and 49 deletions

View File

@ -1,26 +1,26 @@
/* $NetBSD: asm.h,v 1.8 2020/04/17 14:19:43 joerg Exp $ */
/* $NetBSD: asm.h,v 1.9 2023/10/06 11:45:37 skrll Exp $ */
/* -
* Copyright (c) 1991,1990,1989,1994,1995,1996 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 Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
*
* any improvements or extensions that they make and grant Carnegie Mellon
* the rights to redistribute these changes.
*/

View File

@ -1,21 +1,21 @@
/* $NetBSD: bootinfo.h,v 1.2 2019/12/26 04:53:11 msaitoh Exp $ */
/* $NetBSD: bootinfo.h,v 1.3 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
*
* 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
*
* 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 Software.Distribution@CS.CMU.EDU

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.21 2022/05/31 08:43:14 andvar Exp $ */
/* $NetBSD: cpu.h,v 1.22 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@ -155,7 +155,7 @@ struct clockframe {
/*
* Give a profiling tick to the current process when the user profiling
* buffer pages are invalid. XXX:Fixme.... On the ia64 I haven't yet figured
* buffer pages are invalid. XXX:Fixme.... On the ia64 I haven't yet figured
* out what to do about this.. XXX.
*/
/* extern void cpu_need_proftick(struct lwp *l); */

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_machdep.h,v 1.4 2017/11/06 03:47:47 christos Exp $ */
/* $NetBSD: db_machdep.h,v 1.5 2023/10/06 11:45:37 skrll Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
@ -76,8 +76,8 @@ extern db_regs_t *ddb_regp; /* pointer to current register state */
#define ADDR_SLOT0(addr) ( (addr) & ~(0xFUL) )
#define SLOT_ADDR(addr) ( (addr) & (0xFUL) )
/* breakpoint address.
* Check for violations of pseudo offsets above 2.
/* breakpoint address.
* Check for violations of pseudo offsets above 2.
* Adjust for 32 bit shift within Bundle.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: ia64_cpu.h,v 1.3 2016/08/08 12:25:35 scole Exp $ */
/* $NetBSD: ia64_cpu.h,v 1.4 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2007 Marcel Moolenaar
@ -312,7 +312,7 @@ ia64_ld1(uint8_t *p)
}
static __inline uint16_t
ia64_ld2(uint16_t *p)
ia64_ld2(uint16_t *p)
{
uint16_t v;
@ -321,7 +321,7 @@ ia64_ld2(uint16_t *p)
}
static __inline uint32_t
ia64_ld4(uint32_t *p)
ia64_ld4(uint32_t *p)
{
uint32_t v;
@ -330,7 +330,7 @@ ia64_ld4(uint32_t *p)
}
static __inline uint64_t
ia64_ld8(uint64_t *p)
ia64_ld8(uint64_t *p)
{
uint64_t v;

View File

@ -1,4 +1,4 @@
/* $NetBSD: int_limits.h,v 1.5 2014/08/13 22:31:06 matt Exp $ */
/* $NetBSD: int_limits.h,v 1.6 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -80,7 +80,7 @@
#define UINT_LEAST64_MAX 0xffffffffffffffffUL /* uint_least64_t */
/* 7.18.2.3 Limits of fastest minimum-width integer types */
/* minimum values of fastest minimum-width signed integer types */
#define INT_FAST8_MIN (-0x7fffffff-1) /* int_fast8_t */
#define INT_FAST16_MIN (-0x7fffffff-1) /* int_fast16_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: intrdefs.h,v 1.3 2008/04/28 20:23:25 martin Exp $ */
/* $NetBSD: intrdefs.h,v 1.4 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2008 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

View File

@ -1,4 +1,4 @@
/* $NetBSD: loadfile_machdep.h,v 1.3 2014/08/06 21:57:49 joerg Exp $ */
/* $NetBSD: loadfile_machdep.h,v 1.4 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -44,7 +44,7 @@ extern vsize_t ia64_unwindtablen;
#ifdef _STANDALONE
/* XXX: cherry: This whole thing is glue between the NetBSD pread/vpbcopy etc. etc
* and the FreeBSD kern_pread/bzero etc. etc. Needs to be cleaned up
* and the FreeBSD kern_pread/bzero etc. etc. Needs to be cleaned up
* after discussion.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: lock.h,v 1.9 2022/02/12 17:17:53 riastradh Exp $ */
/* $NetBSD: lock.h,v 1.10 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -91,7 +91,7 @@ __cpu_simple_lock_try(__cpu_simple_lock_t *lockp)
uint8_t val;
val = __SIMPLELOCK_LOCKED;
__asm volatile ("xchg1 %0=[%1],%2" :
__asm volatile ("xchg1 %0=[%1],%2" :
"=r" (val)
:"r" (lockp), "r" (val)
:"memory");

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.11 2021/05/31 14:38:55 simonb Exp $ */
/* $NetBSD: param.h,v 1.12 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -118,10 +118,10 @@
#define ia64_round_page(x) ((((unsigned long)(x)) + NBPG - 1) & ~(NBPG - 1))
#define ia64_trunc_page(x) ((unsigned long)(x) & ~(NBPG - 1))
#define ia64_btop(x) ((unsigned long)(x) >> PGSHIFT)
#define ia64_ptob(x) ((unsigned long)(x) << PGSHIFT)
#define ia64_ptob(x) ((unsigned long)(x) << PGSHIFT)
#ifdef _KERNEL
#ifndef _LOCORE

View File

@ -178,10 +178,10 @@ void pmap_procwr(struct proc *, vaddr_t, vsize_t);
struct vm_page_md {
TAILQ_HEAD(,pv_entry) pv_list;
vm_memattr_t memattr;
#if 0 /* XXX freebsd */
#if 0 /* XXX freebsd */
uint8_t pv_flags;
uint8_t aflags;
#endif
#endif
};
#define VM_MDPAGE_INIT(pg) \

View File

@ -1,4 +1,4 @@
/* $NetBSD: proc.h,v 1.10 2018/12/29 20:06:49 scole Exp $ */
/* $NetBSD: proc.h,v 1.11 2023/10/06 11:45:37 skrll Exp $ */
#ifndef _IA64_PROC_H_
#define _IA64_PROC_H_
@ -8,7 +8,7 @@
/*
* Process u-area is organised as follows:
*
* -------------------------------------------
* -------------------------------------------
* | | | | |
* | bspstore sp | 16bytes | TF | PCB |
* | ----> <--- | | | |

View File

@ -1,31 +1,31 @@
/* $NetBSD: setjmp.h,v 1.4 2020/06/29 01:37:27 scole Exp $ */
/* $NetBSD: setjmp.h,v 1.5 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 2000
* Intel Corporation.
* All rights reserved.
*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
*
* 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.
*
*
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
*
*
* This product includes software developed by Intel Corporation and
* its contributors.
*
*
* 4. Neither the name of Intel Corporation or its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
*
* THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION 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 PURPOSE
@ -37,7 +37,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
*
* $FreeBSD: src/sys/ia64/include/setjmp.h,v 1.12 2003/07/26 08:03:43 marcel Exp $
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: userret.h,v 1.1 2009/07/20 04:41:37 kiyohara Exp $ */
/* $NetBSD: userret.h,v 1.2 2023/10/06 11:45:37 skrll Exp $ */
/*
* Copyright (c) 2009 KIYOHARA Takashi
* All rights reserved.

View File

@ -1,4 +1,4 @@
/* $NetBSD: vmparam.h,v 1.11 2019/03/29 16:04:54 scole Exp $ */
/* $NetBSD: vmparam.h,v 1.12 2023/10/06 11:45:37 skrll Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -123,7 +123,7 @@
#define IA64_PBVM_PAGE_SHIFT 16 /* 64KB */
#define IA64_PBVM_PAGE_SIZE (1 << IA64_PBVM_PAGE_SHIFT)
#define IA64_PBVM_PAGE_MASK (IA64_PBVM_PAGE_SIZE - 1)
#define IA64_ID_PAGE_SHIFT 28 /* 256M */
#define IA64_ID_PAGE_SIZE (1 << IA64_ID_PAGE_SHIFT)
#define IA64_ID_PAGE_MASK (IA64_ID_PAGE_SIZE-1)