diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-04 02:08:42 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-04 02:08:42 +0000 |
commit | cf709d84469ff2887d6420fcbda81e062f173e2e (patch) | |
tree | 8635359dbe05c60d3f9474074fbd6a8e59661b31 /sys/arch/arm/xscale/pxa2x0_intr.h | |
parent | 3a600ea67e25e6b4229ec7bbfbda1b63e5f027df (diff) |
Add name argument to pxa2x0_intr_establish, which is standard for openbsd
interrupt handling.
Diffstat (limited to 'sys/arch/arm/xscale/pxa2x0_intr.h')
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_intr.h b/sys/arch/arm/xscale/pxa2x0_intr.h index aebb5a85d9d..6f3f183b64d 100644 --- a/sys/arch/arm/xscale/pxa2x0_intr.h +++ b/sys/arch/arm/xscale/pxa2x0_intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa2x0_intr.h,v 1.2 2005/01/02 19:52:36 drahn Exp $ */ +/* $OpenBSD: pxa2x0_intr.h,v 1.3 2005/01/04 02:08:41 drahn Exp $ */ /* $NetBSD: pxa2x0_intr.h,v 1.4 2003/07/05 06:53:08 dogcow Exp $ */ /* Derived from i80321_intr.h */ @@ -184,7 +184,7 @@ void pxa2x0_intr_bootstrap(vaddr_t); void pxa2x0_irq_handler(void *); void *pxa2x0_intr_establish(int irqno, int level, - int (*func)(void *), void *cookie); + int (*func)(void *), void *cookie, char *name); void pxa2x0_update_intr_masks(int irqno, int level); extern __volatile int current_spl_level; |