From cb43f1ab6533ceee44191260f6ed9d47b19cf001 Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Tue, 24 Nov 2009 13:31:42 +0000 Subject: KSEG->CKSEG fallout. --- sys/arch/sgi/stand/boot/boot.c | 8 ++++---- 1 file 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) -- cgit v1.2.3