diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-18 14:36:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-18 14:36:35 +0000 |
commit | 304570c1a6ffcdc32d27d344ffed099e68a96675 (patch) | |
tree | 70939e026f9c3e85471b490a54e19c126dafcae1 /sys/dev | |
parent | 96e2cba977389173e1b7ed1f23801f911f639320 (diff) |
COM_CONSOLE & DDB fix
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/com.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 9953010a89f..7c598af31e2 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.103 2005/07/17 12:20:50 miod Exp $ */ +/* $OpenBSD: com.c,v 1.104 2005/07/18 14:36:34 deraadt Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -1433,7 +1433,7 @@ comintr(arg) sc->sc_mcr); } } -#ifdef DDB +#if defined(COM_CONSOLE) && defined(DDB) next: #endif lsr = bus_space_read_1(iot, ioh, com_lsr); |