summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrahn <drahn@openbsd.org>2005-03-22 15:52:16 +0000
committerdrahn <drahn@openbsd.org>2005-03-22 15:52:16 +0000
commitfb57cd37c80c4a6e176b72426573b84b0b522062 (patch)
treeaf13672f4997adb3904b388ec51f36a64abe8a77
parentadd missing "of" to make this a real sentence. (diff)
downloadwireguard-openbsd-fb57cd37c80c4a6e176b72426573b84b0b522062.tar.xz
wireguard-openbsd-fb57cd37c80c4a6e176b72426573b84b0b522062.zip
Use a sane interrupt priority for serial. Has a better chance of working.
-rw-r--r--sys/arch/arm/xscale/pxa2x0_com.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_com.c b/sys/arch/arm/xscale/pxa2x0_com.c
index 9226eb33293..b0fb7e6e0de 100644
--- a/sys/arch/arm/xscale/pxa2x0_com.c
+++ b/sys/arch/arm/xscale/pxa2x0_com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pxa2x0_com.c,v 1.3 2005/01/04 02:08:41 drahn Exp $ */
+/* $OpenBSD: pxa2x0_com.c,v 1.4 2005/03/22 15:52:16 drahn Exp $ */
/* $NetBSD: pxa2x0_com.c,v 1.4 2003/07/15 00:24:55 lukem Exp $ */
/*
@@ -146,6 +146,6 @@ pxauart_attach(struct device *parent, struct device *self, void *aux)
com_attach_subr(sc);
- pxa2x0_intr_establish(pxa->pxa_intr, IPL_SERIAL, comintr, sc,
+ pxa2x0_intr_establish(pxa->pxa_intr, IPL_TTY, comintr, sc,
sc->sc_dev.dv_xname);
}