diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 11:26:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 11:26:12 +0000 |
commit | a2ccf6934d084da3e70a86ffaa88299e3ac98180 (patch) | |
tree | 7f64bb31cb4e89d5271ae10e55f5db57a9be4856 /sys/arch/alpha/pci | |
parent | 08fc8a396aab8ac702ab9d4c8b58d173bc437b29 (diff) |
Kill unused sio_intr_count.
Diffstat (limited to 'sys/arch/alpha/pci')
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/pci/siovar.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index ee7994d7b90..bffe3e3aa63 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.35 2008/07/29 18:40:23 miod Exp $ */ +/* $OpenBSD: sio.c,v 1.36 2010/06/06 11:26:11 miod Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -152,8 +152,6 @@ sioattach(parent, self, aux) sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB); - evcount_attach(&sio_intr_count, self->dv_xname, NULL, &evcount_intr); - config_defer(self, sio_bridge_callback); } diff --git a/sys/arch/alpha/pci/siovar.h b/sys/arch/alpha/pci/siovar.h index 0e4a41c8cac..ca5e6937480 100644 --- a/sys/arch/alpha/pci/siovar.h +++ b/sys/arch/alpha/pci/siovar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: siovar.h,v 1.13 2009/08/22 02:54:50 mk Exp $ */ +/* $OpenBSD: siovar.h,v 1.14 2010/06/06 11:26:11 miod Exp $ */ /* $NetBSD: siovar.h,v 1.5 1996/10/23 04:12:34 cgd Exp $ */ /* @@ -38,5 +38,3 @@ int sio_intr_line(void *, int); void *sio_intr_establish(void *, int, int, int, int (*)(void *), void *, const char *); void sio_intr_disestablish(void *, void *); - -struct evcount sio_intr_count; |