aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mpt/mpt.c
diff options
context:
space:
mode:
authorMatt Jacob <mjacob@FreeBSD.org>2006-05-26 05:41:14 +0000
committerMatt Jacob <mjacob@FreeBSD.org>2006-05-26 05:41:14 +0000
commit1043516d26aa6795c13dbe9f7c2db64697fe0de0 (patch)
treecb2dcce2e40d6594bb4d1fdfba86fc4a908e5b11 /sys/dev/mpt/mpt.c
parenta296dc3e6089ad800525d252db589198d36afb0e (diff)
downloadsrc-1043516d26aa6795c13dbe9f7c2db64697fe0de0.tar.gz
src-1043516d26aa6795c13dbe9f7c2db64697fe0de0.zip
Remove handrolled raw dump of a request from
mpt_send_cmd and replace with a new debug function.
Notes
Notes: svn path=/head/; revision=158932
Diffstat (limited to 'sys/dev/mpt/mpt.c')
-rw-r--r--sys/dev/mpt/mpt.c20
1 files changed, 1 insertions, 19 deletions
diff --git a/sys/dev/mpt/mpt.c b/sys/dev/mpt/mpt.c
index e326a04dac7d..9d2d841f58c4 100644
--- a/sys/dev/mpt/mpt.c
+++ b/sys/dev/mpt/mpt.c
@@ -1206,26 +1206,8 @@ retry:
void
mpt_send_cmd(struct mpt_softc *mpt, request_t *req)
{
- uint32_t *pReq;
-
- pReq = req->req_vbuf;
if (mpt->verbose > MPT_PRT_TRACE) {
- int offset;
-#if __FreeBSD_version >= 500000
- mpt_prt(mpt, "Send Request %d (%jx):",
- req->index, (uintmax_t) req->req_pbuf);
-#else
- mpt_prt(mpt, "Send Request %d (%llx):",
- req->index, (unsigned long long) req->req_pbuf);
-#endif
- for (offset = 0; offset < mpt->request_frame_size; offset++) {
- if ((offset & 0x7) == 0) {
- mpt_prtc(mpt, "\n");
- mpt_prt(mpt, " ");
- }
- mpt_prtc(mpt, " %08x", pReq[offset]);
- }
- mpt_prtc(mpt, "\n");
+ mpt_dump_request(mpt, req);
}
bus_dmamap_sync(mpt->request_dmat, mpt->request_dmap,
BUS_DMASYNC_PREWRITE);