summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorad <ad@NetBSD.org>2007-10-17 17:44:19 +0000
committerad <ad@NetBSD.org>2007-10-17 17:44:19 +0000
commit155ff6bf05413a33cb04dd29582439be1c98680c (patch)
treead68b8d004382f32b6672d98cd673be65efc4b26 /sys/dev
parentfd7e1bf0d1ee4dd8cbe0bba80f984106396b210e (diff)
Make it build without IPL_SERIAL.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/comvar.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h
index 0a7c55ac8bb..c6ccfcc9410 100644
--- a/sys/dev/ic/comvar.h
+++ b/sys/dev/ic/comvar.h
@@ -1,4 +1,4 @@
-/* $NetBSD: comvar.h,v 1.56 2007/10/08 16:50:45 ad Exp $ */
+/* $NetBSD: comvar.h,v 1.57 2007/10/17 17:44:19 ad Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -232,9 +232,7 @@ int com_detach(struct device *, int);
int com_activate(struct device *, enum devact);
void com_cleanup(void *);
-#ifdef __NO_SOFT_SERIAL_INTERRUPT
+#ifndef IPL_SERIAL
#define IPL_SERIAL IPL_TTY
#define splserial() spltty()
-#define IPL_SOFTSERIAL IPL_TTY
-#define splsoftserial() spltty()
#endif