summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2005-01-09 05:17:39 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2005-01-09 05:17:39 +0000
commit812246e3d712ae8f351d3469b177aa914059b8ed (patch)
treec889a1dea51f2496fff9674a10309efea7f8f95e /sys/arch
parent4ea3c6a65b272e9f4f908ff8b6b04166dbd3b53b (diff)
Handle the rest of the interrupts.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/arm/xscale/pxa2x0_gpio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_gpio.c b/sys/arch/arm/xscale/pxa2x0_gpio.c
index b771578f6fc..6775ff160af 100644
--- a/sys/arch/arm/xscale/pxa2x0_gpio.c
+++ b/sys/arch/arm/xscale/pxa2x0_gpio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pxa2x0_gpio.c,v 1.5 2005/01/04 23:45:55 drahn Exp $ */
+/* $OpenBSD: pxa2x0_gpio.c,v 1.6 2005/01/09 05:17:38 drahn Exp $ */
/* $NetBSD: pxa2x0_gpio.c,v 1.2 2003/07/15 00:24:55 lukem Exp $ */
/*
@@ -422,6 +422,7 @@ gpio_intrN(void *arg)
handled = gpio_dispatch(sc, 0);
handled |= gpio_dispatch(sc, 32);
handled |= gpio_dispatch(sc, 64);
+ handled |= gpio_dispatch(sc, 96);
return (handled);
}