diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-10 17:59:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-10 17:59:28 +0000 |
commit | c2240bc25bc2b76da1b93416998817bb03248582 (patch) | |
tree | 1f93f371a8f5ce7d024b6f58cf843b999322fbc9 /sys/arch/armish/dev | |
parent | 796638b2971697dc09865edef3662108b9376553 (diff) |
evcnt & friends were replaced by a proper interrupt counting mechanism 3 years ago; ok miod
Diffstat (limited to 'sys/arch/armish/dev')
-rw-r--r-- | sys/arch/armish/dev/iq80321_pci.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/armish/dev/iq80321_pci.c b/sys/arch/armish/dev/iq80321_pci.c index 683e0b19549..382f96f0740 100644 --- a/sys/arch/armish/dev/iq80321_pci.c +++ b/sys/arch/armish/dev/iq80321_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iq80321_pci.c,v 1.8 2006/06/16 06:24:12 drahn Exp $ */ +/* $OpenBSD: iq80321_pci.c,v 1.9 2007/05/10 17:59:24 deraadt Exp $ */ /* $NetBSD: iq80321_pci.c,v 1.5 2005/12/11 12:17:09 christos Exp $ */ /* @@ -57,7 +57,6 @@ int iq80321_pci_intr_map(struct pci_attach_args *, pci_intr_handle_t *); const char *iq80321_pci_intr_string(void *, pci_intr_handle_t); -const struct evcnt *iq80321_pci_intr_evcnt(void *, pci_intr_handle_t); void *iq80321_pci_intr_establish(void *, pci_intr_handle_t, int, int (*func)(void *), void *, char *); void iq80321_pci_intr_disestablish(void *, void *); @@ -267,14 +266,6 @@ iq80321_pci_intr_string(void *v, pci_intr_handle_t ih) return (irqname); } -const struct evcnt * -iq80321_pci_intr_evcnt(void *v, pci_intr_handle_t ih) -{ - - /* XXX For now. */ - return (NULL); -} - void * iq80321_pci_intr_establish(void *v, pci_intr_handle_t ih, int ipl, int (*func)(void *), void *arg, char *name) |