diff options
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/include/intr.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/arch/sparc64/include/intr.h b/sys/arch/sparc64/include/intr.h index fd50694c938..d073d649b2e 100644 --- a/sys/arch/sparc64/include/intr.h +++ b/sys/arch/sparc64/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.6 2003/06/24 21:54:39 henric Exp $ */ +/* $OpenBSD: intr.h,v 1.7 2004/06/23 01:17:01 aaron Exp $ */ /* $NetBSD: intr.h,v 1.8 2001/01/14 23:50:30 thorpej Exp $ */ /*- @@ -51,19 +51,19 @@ * argument, or with a pointer to a clockframe if ih_arg is NULL. */ struct intrhand { - int (*ih_fun)(void *); - void *ih_arg; - short ih_number; /* interrupt number */ - /* the H/W provides */ - char ih_pil; /* interrupt priority */ - volatile char ih_busy; /* handler is on list */ - struct intrhand *ih_next; /* global list */ - struct intrhand *ih_pending; /* pending list */ - volatile u_int64_t *ih_map; /* interrupt map reg */ - volatile u_int64_t *ih_clr; /* clear interrupt reg */ - u_int64_t ih_count; /* # of interrupts */ - const void *ih_bus; /* parent bus */ - char ih_name[1]; /* device name */ + int (*ih_fun)(void *); + void *ih_arg; + short ih_number; /* interrupt number */ + /* the H/W provides */ + char ih_pil; /* interrupt priority */ + volatile char ih_busy; /* handler is on list */ + struct intrhand *ih_next; /* global list */ + struct intrhand *ih_pending; /* pending list */ + volatile u_int64_t *ih_map; /* interrupt map reg */ + volatile u_int64_t *ih_clr; /* clear interrupt reg */ + u_int64_t ih_count; /* # of interrupts */ + const void *ih_bus; /* parent bus */ + char ih_name[1]; /* device name */ }; extern struct intrhand *intrlev[MAXINTNUM]; |