diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-07-30 19:02:09 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-07-30 19:02:09 +0000 |
commit | b0893d436e5f0487e0bae828af4b9a388280d47a (patch) | |
tree | 054d4d7203632e0e5d8f303713cfccb1efe413d5 /sys/arch/mvme88k/dev/pcctwovar.h | |
parent | bc85dce4e6d789a03a4f3802a9c06f89f03a793b (diff) |
Move evcount structures inside struct intrhand, this makes more sense and
gives us more counters in the process.
Also clean up intrhand structures and usage, especially move them to SLISTs.
Diffstat (limited to 'sys/arch/mvme88k/dev/pcctwovar.h')
-rw-r--r-- | sys/arch/mvme88k/dev/pcctwovar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/dev/pcctwovar.h b/sys/arch/mvme88k/dev/pcctwovar.h index 7e4f57fcf7d..70e4a38f17e 100644 --- a/sys/arch/mvme88k/dev/pcctwovar.h +++ b/sys/arch/mvme88k/dev/pcctwovar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcctwovar.h,v 1.1 2004/04/24 19:51:48 miod Exp $ */ +/* $OpenBSD: pcctwovar.h,v 1.2 2004/07/30 19:02:06 miod Exp $ */ /* * Copyright (c) 2004, Miodrag Vallat. * @@ -36,6 +36,6 @@ struct pcctwosoftc { bus_space_handle_t sc_ioh; }; -int pcctwointr_establish(int vec, struct intrhand *ih); +int pcctwointr_establish(int, struct intrhand *, const char *); #endif /* _MVME88K_PCCTWOVAR_H_ */ |