diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-02-14 22:22:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-02-14 22:22:49 +0000 |
commit | f7284652e8a50c221ce51ee815cbc963320b8d23 (patch) | |
tree | 0f7fbab5a5d22f499594b6bb6b814d2c88acba64 /sys/dev/ic | |
parent | a31939470420bb6567cc43889e40a1a3fa4357b0 (diff) |
No need to treat amd64 specially; always return CN_HIGHPRI.
ok miod@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/com.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index cc93d9be55a..4a494ffcce7 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.153 2012/10/17 22:27:27 deraadt Exp $ */ +/* $OpenBSD: com.c,v 1.154 2013/02/14 22:22:48 kettenis Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -1424,11 +1424,7 @@ comcnprobe(struct consdev *cp) /* Initialize required fields. */ cp->cn_dev = makedev(commajor, comconsunit); -#if defined(COMCONSOLE) || !defined(__amd64__) cp->cn_pri = CN_HIGHPRI; -#else - cp->cn_pri = CN_LOWPRI; -#endif } void |