diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2011-10-19 20:18:32 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2011-10-19 20:18:32 +0000 |
commit | 5091c111e0cf228fe6ef579f303a7b67555f3021 (patch) | |
tree | 7f2054e251ad8ba6f7ff1258642d4a54b421f848 /sys/arch/gumstix | |
parent | 34a88d20e53d63d16da40858dffdf93c51036632 (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/gumstix')
-rw-r--r-- | sys/arch/gumstix/gumstix/gumstix_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/gumstix/gumstix/gumstix_machdep.c b/sys/arch/gumstix/gumstix/gumstix_machdep.c index b6680fcbda1..c743facd055 100644 --- a/sys/arch/gumstix/gumstix/gumstix_machdep.c +++ b/sys/arch/gumstix/gumstix/gumstix_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gumstix_machdep.c,v 1.6 2011/05/30 22:25:21 oga Exp $ */ +/* $OpenBSD: gumstix_machdep.c,v 1.7 2011/10/19 20:18:31 drahn Exp $ */ /* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */ /* @@ -496,7 +496,7 @@ copy_io_area_map(pd_entry_t *new_pd) * Relocating the kernel to the bottom of physical memory */ u_int -initarm(void *arg) +initarm(void *arg0, void *arg1, void *arg2) { extern vaddr_t xscale_cache_clean_addr; extern cpu_kcore_hdr_t cpu_kcore_hdr; |