aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/isp
diff options
context:
space:
mode:
authorMatt Jacob <mjacob@FreeBSD.org>2007-03-14 05:58:07 +0000
committerMatt Jacob <mjacob@FreeBSD.org>2007-03-14 05:58:07 +0000
commitf6a6ae8f5c4a5e18d80f67a9af9cdfa560bc33b9 (patch)
tree3771907afe13d02c6362cc7e321caf2f7b19d82a /sys/dev/isp
parent51a232a0b525e973bdff8864adb2e5ed9bff3c34 (diff)
Notes
Diffstat (limited to 'sys/dev/isp')
-rw-r--r--sys/dev/isp/isp.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c
index cef64872a9b0..6e938bca5e86 100644
--- a/sys/dev/isp/isp.c
+++ b/sys/dev/isp/isp.c
@@ -3995,8 +3995,7 @@ int
isp_start(XS_T *xs)
{
ispsoftc_t *isp;
- uint32_t nxti, optr, handle, isr;
- uint16_t sema, mbox;
+ uint32_t nxti, optr, handle;
uint8_t local[QENTRY_LEN];
ispreq_t *reqp, *qep;
void *cdbp;
@@ -4261,11 +4260,6 @@ isp_start(XS_T *xs)
(long) XS_XFRLEN(xs));
ISP_ADD_REQUEST(isp, nxti);
isp->isp_nactive++;
- if (IS_23XX(isp) || IS_24XX(isp)) {
- if (ISP_READ_ISR(isp, &isr, &sema, &mbox)) {
- isp_intr(isp, isr, sema, mbox);
- }
- }
return (CMD_QUEUED);
}