summaryrefslogtreecommitdiff
path: root/sys/arch/arm/include
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2011-10-19 20:18:32 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2011-10-19 20:18:32 +0000
commit5091c111e0cf228fe6ef579f303a7b67555f3021 (patch)
tree7f2054e251ad8ba6f7ff1258642d4a54b421f848 /sys/arch/arm/include
parent34a88d20e53d63d16da40858dffdf93c51036632 (diff)
API change to initarm to pass arguments from the bootloader thru to MD
C code. Will be used on beagle to process machine id and atags. Looked at by uwe@, tested on beagle/armish/zaurus.
Diffstat (limited to 'sys/arch/arm/include')
-rw-r--r--sys/arch/arm/include/machdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/machdep.h b/sys/arch/arm/include/machdep.h
index 2b03ed76562..b7f035675ed 100644
--- a/sys/arch/arm/include/machdep.h
+++ b/sys/arch/arm/include/machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.h,v 1.3 2011/03/23 16:54:34 pirofti Exp $ */
+/* $OpenBSD: machdep.h,v 1.4 2011/10/19 20:18:31 drahn Exp $ */
/* $NetBSD: machdep.h,v 1.7 2002/02/21 02:52:21 thorpej Exp $ */
#ifndef _ARM_MACHDEP_H_
@@ -16,7 +16,7 @@ void dumpsys (void);
* note that we use void * as all the platforms have different ideas on what
* the structure is
*/
-u_int initarm (void *);
+u_int initarm (void *, void *, void *);
/* from arm/arm/intr.c */
void dosoftints (void);