From 9c16356ccd3896ce564d9b28d784045d2c4cbedf Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Thu, 2 Feb 2017 22:02:10 +0000 Subject: [PATCH] Use ANSI definitions for some i386 functions. Sponsored by: The FreeBSD Foundation MFC after: 1 week --- sys/i386/i386/machdep.c | 3 +-- sys/i386/i386/vm_machdep.c | 6 +----- sys/i386/isa/npx.c | 10 ++++------ 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index 855386bf0931..e2d6653ad4a5 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -2164,8 +2164,7 @@ i386_kdb_init(void) } register_t -init386(first) - int first; +init386(int first) { struct gate_descriptor *gdp; int gsel_tss, metadata_missing, x, pa; diff --git a/sys/i386/i386/vm_machdep.c b/sys/i386/i386/vm_machdep.c index 2f63b5ed1f9f..a22b4f40b576 100644 --- a/sys/i386/i386/vm_machdep.c +++ b/sys/i386/i386/vm_machdep.c @@ -172,11 +172,7 @@ alloc_fpusave(int flags) * ready to run and return to user mode. */ void -cpu_fork(td1, p2, td2, flags) - register struct thread *td1; - register struct proc *p2; - struct thread *td2; - int flags; +cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags) { register struct proc *p1; struct pcb *pcb2; diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index bf1c66a8ef43..0ea755925392 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -542,8 +542,7 @@ SYSINIT(npxinitstate, SI_SUB_DRIVERS, SI_ORDER_ANY, npxinitstate, NULL); * Free coprocessor (if we have it). */ void -npxexit(td) - struct thread *td; +npxexit(struct thread *td) { critical_enter(); @@ -573,7 +572,7 @@ npxexit(td) } int -npxformat() +npxformat(void) { if (!hw_float) @@ -953,7 +952,7 @@ npxresume(union savefpu *addr) } void -npxdrop() +npxdrop(void) { struct thread *td; @@ -1289,8 +1288,7 @@ fpu_clean_state(void) #endif /* CPU_ENABLE_SSE */ static void -fpurstor(addr) - union savefpu *addr; +fpurstor(union savefpu *addr) { #ifdef CPU_ENABLE_SSE