diff --git a/sys/dev/mpt/mpt.c b/sys/dev/mpt/mpt.c index 2c8416e52f43..e326a04dac7d 100644 --- a/sys/dev/mpt/mpt.c +++ b/sys/dev/mpt/mpt.c @@ -661,7 +661,6 @@ mpt_intr(void *arg) { struct mpt_softc *mpt; uint32_t reply_desc; - uint32_t last_reply_desc = MPT_REPLY_EMPTY; int ntrips = 0; mpt = (struct mpt_softc *)arg; @@ -675,15 +674,6 @@ mpt_intr(void *arg) u_int req_index; int free_rf; - if (reply_desc == last_reply_desc) { - mpt_prt(mpt, "debounce reply_desc 0x%x\n", reply_desc); - if (ntrips++ == 1000) { - break; - } - continue; - } - last_reply_desc = reply_desc; - req = NULL; reply_frame = NULL; reply_baddr = 0;