summaryrefslogtreecommitdiff
path: root/sys/arch/hp300/stand/uboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/hp300/stand/uboot.c')
-rw-r--r--sys/arch/hp300/stand/uboot.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/hp300/stand/uboot.c b/sys/arch/hp300/stand/uboot.c
index 5e08a75397e..34b5b2baf04 100644
--- a/sys/arch/hp300/stand/uboot.c
+++ b/sys/arch/hp300/stand/uboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uboot.c,v 1.5 1997/02/06 02:53:50 downsj Exp $ */
+/* $OpenBSD: uboot.c,v 1.6 1997/03/21 07:16:22 downsj Exp $ */
/* $NetBSD: uboot.c,v 1.2 1996/10/14 07:33:45 thorpej Exp $ */
/*-
@@ -72,7 +72,7 @@ main()
printf("\n>> OpenBSD [%dKB] UNIFIED BOOT HP9000/%s CPU\n",
(__LDPGSZ / 1024), getmachineid());
- printf(">> $OpenBSD: uboot.c,v 1.5 1997/02/06 02:53:50 downsj Exp $\n");
+ printf(">> $OpenBSD: uboot.c,v 1.6 1997/03/21 07:16:22 downsj Exp $\n");
printf(">> Enter \"reset\" to reset system.\n");
bdev = B_TYPE(bootdev);
@@ -92,9 +92,7 @@ main()
} else
printf(": %s\n", name);
-#define LOADALIGN(_x) ((u_long)_x + ((u_long)_x % __LDPGSZ))
- exec(name, (char *)LOADALIGN(lowram), howto);
-#undef LOADALIGN
+ exec(name, lowram, howto);
printf("boot: %s\n", strerror(errno));
}
}