diff options
author | peter <peter@FreeBSD.org> | 2005-01-21 05:56:41 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2005-01-21 05:56:41 +0000 |
commit | e6f6e38169350b9e71bfe8309e0c4c989925a7c2 (patch) | |
tree | 7aa3eecd411581c48e10f05beb128bbb41ea0aff | |
parent | 5558cc24b7e0bd341f099d2b9730d1ae90a0eb3b (diff) | |
download | FreeBSD-src-e6f6e38169350b9e71bfe8309e0c4c989925a7c2.zip FreeBSD-src-e6f6e38169350b9e71bfe8309e0c4c989925a7c2.tar.gz |
MFi386: whitespace, copyright header, etc updates
-rw-r--r-- | sys/amd64/amd64/exception.S | 2 | ||||
-rw-r--r-- | sys/amd64/amd64/identcpu.c | 2 | ||||
-rw-r--r-- | sys/amd64/include/bus_dma.h | 2 | ||||
-rw-r--r-- | sys/amd64/include/param.h | 1 | ||||
-rw-r--r-- | sys/amd64/isa/isa.c | 2 | ||||
-rw-r--r-- | sys/amd64/pci/pci_cfgreg.c | 1 |
6 files changed, 3 insertions, 7 deletions
diff --git a/sys/amd64/amd64/exception.S b/sys/amd64/amd64/exception.S index c5aec6f..8f80a43 100644 --- a/sys/amd64/amd64/exception.S +++ b/sys/amd64/amd64/exception.S @@ -130,7 +130,7 @@ IDTVEC(prot) TRAP_ERR(T_PROTFLT) IDTVEC(align) TRAP_ERR(T_ALIGNFLT) - + /* * alltraps entry point. Use swapgs if this is the first time in the * kernel from userland. Reenable interrupts if they were enabled diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index cf6e93e..60f9567 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -2,8 +2,6 @@ * Copyright (c) 1992 Terrence R. Lambert. * Copyright (c) 1982, 1987, 1990 The Regents of the University of California. * Copyright (c) 1997 KATO Takenori. - * Copyright (c) 2001 Tamotsu Hattori. - * Copyright (c) 2001 Mitsuru IWASAKI. * All rights reserved. * * This code is derived from software contributed to Berkeley by diff --git a/sys/amd64/include/bus_dma.h b/sys/amd64/include/bus_dma.h index fe02855..95435da 100644 --- a/sys/amd64/include/bus_dma.h +++ b/sys/amd64/include/bus_dma.h @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1996 Charles M. Hannum. All rights reserved. * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. * diff --git a/sys/amd64/include/param.h b/sys/amd64/include/param.h index cf51923..93343d3 100644 --- a/sys/amd64/include/param.h +++ b/sys/amd64/include/param.h @@ -126,7 +126,6 @@ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ - /* * Ceiling on amount of swblock kva space, can be changed via * the kern.maxswzone /boot/loader.conf variable. diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index dc39a31..9ac9c32 100644 --- a/sys/amd64/isa/isa.c +++ b/sys/amd64/isa/isa.c @@ -27,7 +27,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -/* +/*- * Modifications for Intel architecture by Garrett A. Wollman. * Copyright 1998 Massachusetts Institute of Technology * diff --git a/sys/amd64/pci/pci_cfgreg.c b/sys/amd64/pci/pci_cfgreg.c index 29581db..e4a5a2a 100644 --- a/sys/amd64/pci/pci_cfgreg.c +++ b/sys/amd64/pci/pci_cfgreg.c @@ -325,4 +325,3 @@ pcireg_cfgopen(void) devmax = 0; return (cfgmech); } - |