diff options
Diffstat (limited to 'sys/arch/alpha/pci/siovar.h')
-rw-r--r-- | sys/arch/alpha/pci/siovar.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/arch/alpha/pci/siovar.h b/sys/arch/alpha/pci/siovar.h index 746b9a89abb..84bcfabcedd 100644 --- a/sys/arch/alpha/pci/siovar.h +++ b/sys/arch/alpha/pci/siovar.h @@ -1,7 +1,7 @@ -/* $NetBSD: siovar.h,v 1.1 1995/11/23 02:38:22 cgd Exp $ */ +/* $NetBSD: siovar.h,v 1.3 1996/04/12 06:09:06 cgd Exp $ */ /* - * Copyright (c) 1995 Carnegie-Mellon University. + * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * * Author: Chris G. Demetriou @@ -27,10 +27,14 @@ * rights to redistribute these changes. */ -void sio_intr_setup __P((__const struct isa_pio_fns *, void *)); +void sio_intr_setup __P((bus_chipset_tag_t)); void sio_iointr __P((void *framep, int vec)); +const char *sio_intr_string __P((void *, int)); +void *sio_intr_establish __P((void *, int, int, int, int (*)(void *), + void *)); +void sio_intr_disestablish __P((void *, void *)); + #ifdef EVCNT_COUNTERS extern struct evcnt sio_intr_evcnt; #endif -extern __const struct isa_intr_fns sio_isa_intr_fns; |