diff options
author | 2009-06-19 17:39:02 +0000 | |
---|---|---|
committer | 2009-06-19 17:39:02 +0000 | |
commit | 80159e2c0e73d2489a96c3a8224c40286f9336da (patch) | |
tree | c0b260a9ac00538b3e1d380b979437610fd48bc3 | |
parent | When operating in liberal mode, retain labels even if they aren't learnt (diff) | |
download | wireguard-openbsd-80159e2c0e73d2489a96c3a8224c40286f9336da.tar.xz wireguard-openbsd-80159e2c0e73d2489a96c3a8224c40286f9336da.zip |
Make the 64 bit bootblocks compile again after the <machine/mnode.h> changes.
-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 *); |