diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-09-04 20:40:54 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-09-04 20:40:54 +0000 |
commit | c812d49731d60b10b73f75c109420d4a826b7a05 (patch) | |
tree | 914692b4dc4ef7256491c0dd738e8b8708f78303 | |
parent | 5a74a22bc0c69edfb904f88fd2c064cf5391dd31 (diff) |
remove unused NetBSD pci_intr_evcnt() function.
-rw-r--r-- | sys/arch/sparc64/dev/pci_machdep.c | 12 | ||||
-rw-r--r-- | sys/arch/sparc64/include/pci_machdep.h | 3 |
2 files changed, 2 insertions, 13 deletions
diff --git a/sys/arch/sparc64/dev/pci_machdep.c b/sys/arch/sparc64/dev/pci_machdep.c index 8afd8aa10fb..359e7373808 100644 --- a/sys/arch/sparc64/dev/pci_machdep.c +++ b/sys/arch/sparc64/dev/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.19 2005/07/30 20:50:35 brad Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.20 2005/09/04 20:40:53 brad Exp $ */ /* $NetBSD: pci_machdep.c,v 1.22 2001/07/20 00:07:13 eeh Exp $ */ /* @@ -451,16 +451,6 @@ pci_intr_string(pc, ih) return (str); } -const struct evcnt * -pci_intr_evcnt(pc, ih) - pci_chipset_tag_t pc; - pci_intr_handle_t ih; -{ - - /* XXX for now, no evcnt parent reported */ - return NULL; -} - void * pci_intr_establish(pc, ih, level, func, arg, what) pci_chipset_tag_t pc; diff --git a/sys/arch/sparc64/include/pci_machdep.h b/sys/arch/sparc64/include/pci_machdep.h index 8339e9f0461..e9148812ebf 100644 --- a/sys/arch/sparc64/include/pci_machdep.h +++ b/sys/arch/sparc64/include/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.13 2004/12/02 02:41:02 brad Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.14 2005/09/04 20:40:53 brad Exp $ */ /* $NetBSD: pci_machdep.h,v 1.7 2001/07/20 00:07:14 eeh Exp $ */ /* @@ -94,7 +94,6 @@ void pci_conf_write(pci_chipset_tag_t, pcitag_t, int, pcireg_t); int pci_intr_map(struct pci_attach_args *, pci_intr_handle_t *); const char *pci_intr_string(pci_chipset_tag_t, pci_intr_handle_t); -const struct evcnt *pci_intr_evcnt(pci_chipset_tag_t, pci_intr_handle_t); void *pci_intr_establish(pci_chipset_tag_t, pci_intr_handle_t, int, int (*)(void *), void *, char *); void pci_intr_disestablish(pci_chipset_tag_t, void *); |