diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2006-04-19 21:17:33 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2006-04-19 21:17:33 +0000 |
| commit | 4f9f0449c66de88176f312e200a1e0a408f21e39 (patch) | |
| tree | 36856928200308b8f1c13df90f4cf229141479ce | |
| parent | c1ffaf8c9afdb1772c3b52d0dcbd28cecf2e01d4 (diff) | |
Notes
| -rw-r--r-- | sys/dev/mpt/mpt.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/dev/mpt/mpt.c b/sys/dev/mpt/mpt.c index 2c8416e52f43e..e326a04dac7db 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; |
