From e11b1a283ae8d9762126b08bd888fa3d59be2651 Mon Sep 17 00:00:00 2001 From: mjacob Date: Sun, 17 Oct 1999 18:41:47 +0000 Subject: add in an INT_PENDING macro --- sys/dev/isp/ispreg.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/isp/ispreg.h b/sys/dev/isp/ispreg.h index 893f697..18791ff 100644 --- a/sys/dev/isp/ispreg.h +++ b/sys/dev/isp/ispreg.h @@ -1,5 +1,4 @@ /* $FreeBSD$ */ -/* release_5_11_99 */ /* * Machine Independent (well, as best as possible) register * definitions for Qlogic ISP SCSI adapters. @@ -222,6 +221,8 @@ #define BIU2100_ISR_RXDMA_INT_PENDING 0x0002 /* Global interrupt pending */ #define BIU2100_ISR_TXDMA_INT_PENDING 0x0001 /* Global interrupt pending */ +#define INT_PENDING(isp, isr) (IS_FC(isp)? \ + ((isr & BIU2100_ISR_RISC_INT) != 0) : ((isr & BIU_ISR_RISC_INT) != 0)) /* BUS SEMAPHORE REGISTER */ #define BIU_SEMA_STATUS 0x0002 /* Semaphore Status Bit */ -- cgit v1.1