diff options
author | 2009-11-24 13:31:41 +0000 | |
---|---|---|
committer | 2009-11-24 13:31:41 +0000 | |
commit | e92ec383aebb1637973dc04a491028d6fe5e8ac2 (patch) | |
tree | 8809b22a80083427f2b4a9e4b1c4e604b5bffcb0 | |
parent | kill obsolete natpass (diff) | |
download | wireguard-openbsd-e92ec383aebb1637973dc04a491028d6fe5e8ac2.tar.xz wireguard-openbsd-e92ec383aebb1637973dc04a491028d6fe5e8ac2.zip |
KSEG->CKSEG fallout.
-rw-r--r-- | sys/arch/sgi/stand/boot/boot.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sgi/stand/boot/boot.c b/sys/arch/sgi/stand/boot/boot.c index 25b559c9f00..27c597ec9ff 100644 --- a/sys/arch/sgi/stand/boot/boot.c +++ b/sys/arch/sgi/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.13 2009/05/30 03:59:27 miod Exp $ */ +/* $OpenBSD: boot.c,v 1.14 2009/11/24 13:31:41 miod Exp $ */ /* * Copyright (c) 2004 Opsycon AB, www.opsycon.se. @@ -95,9 +95,9 @@ main(int argc, char *argv[]) #ifdef __LP64__ esym = (u_int64_t *)marks[MARK_END]; #else -#undef KSEG0_BASE -#define KSEG0_BASE 0xffffffff80000000ULL - esym = (u_int64_t *)PHYS_TO_KSEG0(marks[MARK_END]); +#undef CKSEG0_BASE +#define CKSEG0_BASE 0xffffffff80000000ULL + esym = (u_int64_t *)PHYS_TO_CKSEG0(marks[MARK_END]); #endif if (entry != NULL) |