diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-09-09 22:12:57 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-09 22:13:41 +0200 |
commit | ea3ec09ecc7c080ce7fac7da00f50f0062d511f3 (patch) | |
tree | f0683cfe5ca688d9031ab7ea80c8e6f28d4a00ca | |
parent | 790fe51dafa1d1423f3a990259a50a4ef3eee0f7 (diff) |
Drop luna88k bits
* device/tty.h [luna88k]: Remove ifdef and include for nonexistent header files.
* kern/debug.c: Remove check for luna88k.
-rw-r--r-- | device/tty.h | 4 | ||||
-rw-r--r-- | kern/debug.c | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/device/tty.h b/device/tty.h index be28708..dcc7711 100644 --- a/device/tty.h +++ b/device/tty.h @@ -42,10 +42,6 @@ #include <device/cirbuf.h> #include <device/io_req.h> -#ifdef luna88k -#include <luna88k/jtermio.h> -#endif - struct tty { decl_simple_lock_data(,t_lock) struct cirbuf t_inq; /* input buffer */ diff --git a/kern/debug.c b/kern/debug.c index 09c8ff4..7f6e555 100644 --- a/kern/debug.c +++ b/kern/debug.c @@ -96,7 +96,7 @@ void SoftDebugger(message) asm("ta 0x81"); #endif /* sun4 */ -#if defined(mips ) || defined(luna88k) || defined(i860) || defined(alpha) +#if defined(mips ) || defined(i860) || defined(alpha) gimmeabreak(); #endif |