From e4989c23fe81c5060ef3a4e0e3bb1bb4430d1a76 Mon Sep 17 00:00:00 2001 From: dfr Date: Sat, 8 May 1999 21:59:43 +0000 Subject: Move the declaration of the interrupt type from the driver structure to the BUS_SETUP_INTR call. --- sys/dev/buslogic/bt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/buslogic/bt.c') diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index 23de96c..afa8856 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt.c,v 1.19 1999/05/05 06:45:09 imp Exp $ + * $Id: bt.c,v 1.20 1999/05/06 20:16:20 ken Exp $ */ /* @@ -868,7 +868,8 @@ bt_attach(device_t dev) /* * Setup interrupt. */ - error = bus_setup_intr(dev, bt->irq, bt_intr, bt, &bt->ih); + error = bus_setup_intr(dev, bt->irq, INTR_TYPE_CAM, + bt_intr, bt, &bt->ih); if (error) { device_printf(dev, "bus_setup_intr() failed: %d\n", error); return (error); -- cgit v1.1