summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/arch/arm64/arm64/autoconf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/arm64/arm64/autoconf.c b/sys/arch/arm64/arm64/autoconf.c
index 9feef11aa7c..f1491ed210e 100644
--- a/sys/arch/arm64/arm64/autoconf.c
+++ b/sys/arch/arm64/arm64/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.6 2017/12/27 13:57:40 kettenis Exp $ */
+/* $OpenBSD: autoconf.c,v 1.7 2018/01/20 18:35:41 kettenis Exp $ */
/*
* Copyright (c) 2009 Miodrag Vallat.
*
@@ -34,7 +34,6 @@ enum devclass bootdev_class = DV_DULL;
void
unmap_startup(void)
{
-#if 0
extern void *_start, *endboot;
vaddr_t p = (vaddr_t)&_start;
@@ -42,7 +41,6 @@ unmap_startup(void)
pmap_kremove(p, PAGE_SIZE);
p += PAGE_SIZE;
} while (p < (vaddr_t)&endboot);
-#endif
}
void