diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-03-22 15:52:17 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-03-22 15:52:17 +0000 |
commit | 2caa2cacb230b80f5ae6e9f60486e4d9e0552b11 (patch) | |
tree | fd84e0e25aee629bfb16aa3eb3d129b423862284 | |
parent | 0b98cba95a941c46e056e39a9e36f08ac5d5ad40 (diff) |
Use a sane interrupt priority for serial. Has a better chance of working.
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_com.c | 4 |
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); } |