From 158a6e52a420ca8ba31c55865e34ad89d9a11fb6 Mon Sep 17 00:00:00 2001 From: thorpej Date: Thu, 8 May 1997 04:39:03 +0000 Subject: [PATCH] Garbage-collect and uneeded #ifdef. --- sys/dev/pci/ahc_pci.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c index 5ade0e642c6a..a35bca153559 100644 --- a/sys/dev/pci/ahc_pci.c +++ b/sys/dev/pci/ahc_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ahc_pci.c,v 1.14 1997/04/13 20:14:20 cgd Exp $ */ +/* $NetBSD: ahc_pci.c,v 1.15 1997/05/08 04:39:03 thorpej Exp $ */ /* * Product specific probe and attach routines for: @@ -481,12 +481,7 @@ ahc_pci_attach(parent, self, aux) return; } intrstr = pci_intr_string(pa->pa_pc, ih); -#if defined(__OpenBSD__) - ahc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, ahc_intr, ahc, - ahc->sc_dev.dv_xname); -#else ahc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, ahc_intr, ahc); -#endif if (ahc->sc_ih == NULL) { printf("%s: couldn't establish interrupt", ahc->sc_dev.dv_xname);