diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-24 13:31:42 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-24 13:31:42 +0000 |
commit | cb43f1ab6533ceee44191260f6ed9d47b19cf001 (patch) | |
tree | 63f5e1b7dd43918273edab7872dd8c6f6c875d26 | |
parent | 9b8c996d7455d74925bdd6c6f1a6754f4d96d146 (diff) |
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) |