Module Name: src
Committed By: skrll
Date: Tue Jul 16 16:18:56 UTC 2019
Modified Files:
src/sys/arch/aarch64/include: machdep.h
Log Message:
Add vaddr_t initarm(void *);
Missed in previous commit.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/aarch64/include/machdep.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/aarch64/include/machdep.h
diff -u src/sys/arch/aarch64/include/machdep.h:1.7 src/sys/arch/aarch64/include/machdep.h:1.8
--- src/sys/arch/aarch64/include/machdep.h:1.7 Sat Apr 6 03:06:24 2019
+++ src/sys/arch/aarch64/include/machdep.h Tue Jul 16 16:18:56 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.h,v 1.7 2019/04/06 03:06:24 thorpej Exp $ */
+/* $NetBSD: machdep.h,v 1.8 2019/07/16 16:18:56 skrll Exp $ */
/*
* Copyright (c) 2017 Ryo Shimizu <[email protected]>
@@ -70,6 +70,12 @@ extern char *booted_kernel;
extern u_int arm_cpu_max;
#endif
+/*
+ * note that we use void * as all the platforms have different ideas on what
+ * the structure is
+ */
+vaddr_t initarm(void *);
+
vaddr_t initarm_common(vaddr_t, vsize_t, const struct boot_physmem *, size_t);
void cpu_kernel_vm_init(paddr_t, psize_t);
void uartputc(int);