diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2014-10-03 20:47:42 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2014-10-03 20:47:42 +0000 |
commit | df3e34e05e9669999d2046b7074bd19c35922dd7 (patch) | |
tree | f4dadfb813a18c37e22c7cd0c02de783997bf90f /sys | |
parent | bf51b75f09c0170dfc80caa3006000a22ea96ee4 (diff) |
Delete long-time unused #if 0 part.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/luna88k/luna88k/machdep.c | 22 |
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); |