diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-09-04 19:19:41 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-09-04 19:19:41 +0000 |
commit | ef98f0a3a4bceb0653cb246f9ab41259f6a66202 (patch) | |
tree | e63463f28ec0101bd36f4e3ffd044ee6adf1cc8f /sys/arch | |
parent | 1e67f77c2c63583d5e4467cd5a479e474dd1a7d3 (diff) |
remove unused NetBSD pci_intr_evcnt() function.
ok beck@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/include/pci_machdep.h | 3 | ||||
-rw-r--r-- | sys/arch/amd64/pci/pci_machdep.c | 12 |
2 files changed, 2 insertions, 13 deletions
diff --git a/sys/arch/amd64/include/pci_machdep.h b/sys/arch/amd64/include/pci_machdep.h index 7d0c316e82a..d58d306e91f 100644 --- a/sys/arch/amd64/include/pci_machdep.h +++ b/sys/arch/amd64/include/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.2 2004/12/07 02:29:40 brad Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.3 2005/09/04 19:19:40 brad Exp $ */ /* $NetBSD: pci_machdep.h,v 1.1 2003/02/26 21:26:11 fvdl Exp $ */ /* @@ -87,7 +87,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 *); diff --git a/sys/arch/amd64/pci/pci_machdep.c b/sys/arch/amd64/pci/pci_machdep.c index 2c778056c77..bfd0aba04cf 100644 --- a/sys/arch/amd64/pci/pci_machdep.c +++ b/sys/arch/amd64/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.6 2005/06/25 21:00:56 brad Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.7 2005/09/04 19:19:40 brad Exp $ */ /* $NetBSD: pci_machdep.c,v 1.3 2003/05/07 21:33:58 fvdl Exp $ */ /*- @@ -594,16 +594,6 @@ pci_intr_string(pc, ih) } -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; |