aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/interrupt.h
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-09-05 01:22:14 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-09-05 01:22:14 +0000
commit5752bffd550d9f7cab944dd10d2d4d562b56b09f (patch)
tree7cbec49c33a6bd349dea1e778d4435d41eaf1a0c /sys/sys/interrupt.h
parent01f5320ae828f7028386a1894ddaca809ef5901e (diff)
downloadsrc-5752bffd550d9f7cab944dd10d2d4d562b56b09f.tar.gz
src-5752bffd550d9f7cab944dd10d2d4d562b56b09f.zip
style(9) the structure definitions.
Notes
Notes: svn path=/head/; revision=83045
Diffstat (limited to 'sys/sys/interrupt.h')
-rw-r--r--sys/sys/interrupt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/interrupt.h b/sys/sys/interrupt.h
index fefa2a72182f..527a5e647da6 100644
--- a/sys/sys/interrupt.h
+++ b/sys/sys/interrupt.h
@@ -38,7 +38,7 @@
* Multiple interrupt handlers for a specific vector can be chained
* together.
*/
-struct intrhand {
+struct intrhand {
driver_intr_t *ih_handler; /* Handler function. */
void *ih_argument; /* Argument to pass to handler. */
int ih_flags;
@@ -61,7 +61,7 @@ struct intrhand {
* Note that this actually describes an interrupt source. There may or may
* not be an actual kernel thread attached to a given source.
*/
-struct ithd {
+struct ithd {
struct mtx it_lock;
struct proc *it_proc; /* Interrupt process. */
LIST_ENTRY(ithd) it_list; /* All interrupt threads. */