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/vme.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/vme.h')
-rw-r--r-- | sys/arch/mvme88k/dev/vme.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/dev/vme.h b/sys/arch/mvme88k/dev/vme.h index 455a94d8a96..040731c3aeb 100644 --- a/sys/arch/mvme88k/dev/vme.h +++ b/sys/arch/mvme88k/dev/vme.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vme.h,v 1.15 2004/04/24 19:51:48 miod Exp $ */ +/* $OpenBSD: vme.h,v 1.16 2004/07/30 19:02:06 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -282,7 +282,7 @@ struct vmesoftc { void *vmepmap(struct device *sc, off_t vmeaddr, int bustype); int vmerw(struct device *sc, struct uio *uio, int flags, int bus); -int vmeintr_establish(int vec, struct intrhand *ih); +int vmeintr_establish(int, struct intrhand *, const char *); int vme_findvec(int); int vmescan(struct device *, void *, void *, int); |