aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include
diff options
context:
space:
mode:
authorIan Lepore <ian@FreeBSD.org>2014-03-09 03:00:03 +0000
committerIan Lepore <ian@FreeBSD.org>2014-03-09 03:00:03 +0000
commitba1c2daad4e67254a0fb5e18a2aeff4150334aee (patch)
treeabbbaa374dc33841a853e8379d0783e36b54a2a3 /sys/arm/include
parent9d6f987b132bd3cd28163e41696085254713e989 (diff)
Notes
Diffstat (limited to 'sys/arm/include')
-rw-r--r--sys/arm/include/pcpu.h3
-rw-r--r--sys/arm/include/vfp.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/arm/include/pcpu.h b/sys/arm/include/pcpu.h
index 1771a8e821ab..ee79343af01a 100644
--- a/sys/arm/include/pcpu.h
+++ b/sys/arm/include/pcpu.h
@@ -46,9 +46,8 @@ struct vmspace;
unsigned int pc_vfpsid; \
unsigned int pc_vfpmvfr0; \
unsigned int pc_vfpmvfr1; \
- struct thread *pc_vfpcthread; \
struct pmap *pc_curpmap; \
- char __pad[133]
+ char __pad[137]
#else
#define PCPU_MD_FIELDS \
char __pad[157]
diff --git a/sys/arm/include/vfp.h b/sys/arm/include/vfp.h
index 623f0d011bf9..90238210d579 100644
--- a/sys/arm/include/vfp.h
+++ b/sys/arm/include/vfp.h
@@ -126,6 +126,10 @@
#define COPROC10 (0x3 << 20)
#define COPROC11 (0x3 << 22)
+#ifndef LOCORE
void vfp_init(void);
+void vfp_store(struct vfp_state *, boolean_t);
+void vfp_discard(void);
+#endif
#endif