summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraoyama <aoyama@openbsd.org>2014-10-03 20:47:41 +0000
committeraoyama <aoyama@openbsd.org>2014-10-03 20:47:41 +0000
commit804b2cf95acb71d37bc401acb7fe630b25fb8851 (patch)
treeb79562fd5023735e2104ff0b143249e0da47fe94
parentsync (diff)
downloadwireguard-openbsd-804b2cf95acb71d37bc401acb7fe630b25fb8851.tar.xz
wireguard-openbsd-804b2cf95acb71d37bc401acb7fe630b25fb8851.zip
Delete long-time unused #if 0 part.
-rw-r--r--sys/arch/luna88k/luna88k/machdep.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/arch/luna88k/luna88k/machdep.c b/sys/arch/luna88k/luna88k/machdep.c
index 5c7701b362f..65b9413d3b8 100644
--- a/sys/arch/luna88k/luna88k/machdep.c
+++ b/sys/arch/luna88k/luna88k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.110 2014/09/27 19:50:10 aoyama Exp $ */
+/* $OpenBSD: machdep.c,v 1.111 2014/10/03 20:47:41 aoyama Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -399,22 +399,6 @@ cpu_startup()
break;
}
-#if 0 /* just for test */
- /*
- * Get boot arguments
- */
- {
- char buf[256];
- char **p = (volatile char **)0x00001120;
-
- strncpy(buf, *p, 256);
- if (buf[255] != '\0')
- buf[255] = '\0';
-
- printf("boot arg: (0x%x) %s\n", *p, buf);
- }
-#endif
-
/*
* Allocate a submap for exec arguments. This map effectively
* limits the number of processes exec'ing at any time.
@@ -1107,10 +1091,6 @@ romttycnputc(dev, c)
{
int s;
-#if 0
- if ((char)c == '\n')
- ROMPUTC('\r');
-#endif
s = splhigh();
ROMPUTC(c);
splx(s);