diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-29 13:01:55 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-29 13:01:55 +0000 |
commit | 3703accf4e007eaafb268e38537b30a7f2e8a6bf (patch) | |
tree | 2e0be0e7c6f8cf433ed966f2defb1fe32559f98d /sys/arch/arm64/include | |
parent | feee95397af4e8cf4261e632cba0862d6de56d1c (diff) |
remove prototypes for removed functions
Diffstat (limited to 'sys/arch/arm64/include')
-rw-r--r-- | sys/arch/arm64/include/cpu.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/sys/arch/arm64/include/cpu.h b/sys/arch/arm64/include/cpu.h index fc44e19d14e..4cc24ee7235 100644 --- a/sys/arch/arm64/include/cpu.h +++ b/sys/arch/arm64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.45 2024/04/19 10:22:50 mpi Exp $ */ +/* $OpenBSD: cpu.h,v 1.46 2024/04/29 13:01:54 jsg Exp $ */ /* * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com> * @@ -96,10 +96,6 @@ extern uint64_t cpu_id_aa64pfr1; #define PROC_PC(p) ((p)->p_addr->u_pcb.pcb_tf->tf_elr) #define PROC_STACK(p) ((p)->p_addr->u_pcb.pcb_tf->tf_sp) -/* The address of the vector page. */ -extern vaddr_t vector_page; -void arm32_vector_init(vaddr_t, int); - /* * Per-CPU information. For now we assume one CPU. */ @@ -276,29 +272,15 @@ void need_resched(struct cpu_info *); // asm code to start new kernel contexts. void proc_trampoline(void); -void child_trampoline(void); /* * Random cruft */ void dumpconf(void); -// cpuswitch.S -struct pcb; -void savectx (struct pcb *pcb); - -// machdep.h -void bootsync (int); - -// fault.c -int badaddr_read (void *, size_t, void *); - // syscall.c void svc_handler (trapframe_t *); -/* machine_machdep.c */ -void board_startup(void); - // functions to manipulate interrupt state static __inline void restore_daif(uint32_t daif) |