summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/include/intr.h
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2004-06-23 01:17:02 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2004-06-23 01:17:02 +0000
commit9fa801572fce218d8737cfd99fe4b3efe8801cc8 (patch)
treeb770d754ed1c5e551431c3729ff78e7595c3c072 /sys/arch/sparc64/include/intr.h
parent6f0e73bdee5483812a904e4afc1fd73345802285 (diff)
tabs vs spaces
Diffstat (limited to 'sys/arch/sparc64/include/intr.h')
-rw-r--r--sys/arch/sparc64/include/intr.h28
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];