summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2016-01-19 08:08:08 +0000
committerkib <kib@FreeBSD.org>2016-01-19 08:08:08 +0000
commit63cfb09a9a61e88466762ddfe087b4be32bbe902 (patch)
treed0f09ae6905b6361e5141334f85dd2f48e63cada /sys/amd64
parentbee088bb002995f262c87caa5031f31856cc73a6 (diff)
downloadFreeBSD-src-63cfb09a9a61e88466762ddfe087b4be32bbe902.zip
FreeBSD-src-63cfb09a9a61e88466762ddfe087b4be32bbe902.tar.gz
Use ANSI definitions. Wrap long line.
Sponsored by: The FreeBSD Foundation MFC after: 2 weeks
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/fpu.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c
index 91ceab2..b0ea5b0 100644
--- a/sys/amd64/amd64/fpu.c
+++ b/sys/amd64/amd64/fpu.c
@@ -377,7 +377,7 @@ fpuexit(struct thread *td)
}
int
-fpuformat()
+fpuformat(void)
{
return (_MC_FPFMT_XMM);
@@ -663,7 +663,8 @@ fpudna(void)
* fpu_initialstate, to ignite the XSAVEOPT
* tracking engine.
*/
- bcopy(fpu_initialstate, curpcb->pcb_save, cpu_max_ext_state_size);
+ bcopy(fpu_initialstate, curpcb->pcb_save,
+ cpu_max_ext_state_size);
fpurestore(curpcb->pcb_save);
if (curpcb->pcb_initial_fpucw != __INITIAL_FPUCW__)
fldcw(curpcb->pcb_initial_fpucw);
@@ -678,7 +679,7 @@ fpudna(void)
}
void
-fpudrop()
+fpudrop(void)
{
struct thread *td;
OpenPOWER on IntegriCloud