diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-06-19 17:39:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-06-19 17:39:03 +0000 |
commit | c21ad768f77e67197859c3eb28bfc36e5f83cd17 (patch) | |
tree | 4d39bfbe3a9abead659353c6a79915deff572211 /sys | |
parent | d69ce1d8e713532f6ea57a6e8b85ae5f40e406f3 (diff) |
Make the 64 bit bootblocks compile again after the <machine/mnode.h> changes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sgi/stand/boot/arcbios.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sgi/stand/boot/arcbios.c b/sys/arch/sgi/stand/boot/arcbios.c index 02a4139f624..cd7318634fd 100644 --- a/sys/arch/sgi/stand/boot/arcbios.c +++ b/sys/arch/sgi/stand/boot/arcbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arcbios.c,v 1.10 2009/05/30 03:59:27 miod Exp $ */ +/* $OpenBSD: arcbios.c,v 1.11 2009/06/19 17:39:02 miod Exp $ */ /*- * Copyright (c) 1996 M. Warner Losh. All rights reserved. * Copyright (c) 1996-2004 Opsycon AB. All rights reserved. @@ -31,12 +31,14 @@ #include <mips64/arcbios.h> #include <mips64/archtype.h> #include <machine/autoconf.h> +#include <machine/cpu.h> #include <machine/mnode.h> #include <stand.h> static int bios_is_32bit; +u_int kl_n_shift = 32; int arcbios_init(void); const char *boot_get_path_component(const char *, char *, int *); const char *boot_getnr(const char *, int *); |