summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2013-12-16 12:08:14 +0000
committerskrll <skrll@NetBSD.org>2013-12-16 12:08:14 +0000
commit791e95ea1110a10009e06eee793c253dbca19dee (patch)
treef5f7b72663298ee2a1f9895ae8c622e9d0f1fccb /sys/dev/ic
parenteb7df26321a37fed7d90931356764b7644a78882 (diff)
Use #if defined in previous.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/com.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index a46730a0b1e..8531949d394 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $NetBSD: com.c,v 1.320 2013/12/16 01:51:19 htodd Exp $ */
+/* $NetBSD: com.c,v 1.321 2013/12/16 12:08:14 skrll Exp $ */
/*-
* Copyright (c) 1998, 1999, 2004, 2008 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.320 2013/12/16 01:51:19 htodd Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.321 2013/12/16 12:08:14 skrll Exp $");
#include "opt_com.h"
#include "opt_ddb.h"
@@ -385,7 +385,7 @@ com_attach_subr(struct com_softc *sc)
{
struct com_regs *regsp = &sc->sc_regs;
struct tty *tp;
-#if (COM_16650 || COM_16750)
+#if defined(COM_16650) || defined(COM_16750)
u_int8_t lcr;
#endif
const char *fifo_msg = NULL;