diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-21 09:24:53 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-21 09:24:53 +0000 |
commit | 2ef61c4195d0a7ace9c27436dbf7ae33ee8a29f9 (patch) | |
tree | 8aa6a4bc1da19db3843586f2d7e1780efa443db8 /sys/arch/powerpc | |
parent | 14934cfc44663f6bc310cb36c07f25c380e664ae (diff) |
For interrupts that get established before we attach the interrupt controller,
store the type of the interrupt (level, edge).
ok miod@, mpi@
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index e636d03ee29..2220b8aac71 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.47 2011/08/29 20:21:43 drahn Exp $ */ +/* $OpenBSD: intr.h,v 1.48 2012/08/21 09:24:52 kettenis Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -155,6 +155,7 @@ struct intrhand { int (*ih_fun)(void *); void *ih_arg; struct evcount ih_count; + int ih_type; int ih_level; int ih_irq; const char *ih_what; |