diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 1998-09-16 03:26:10 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 1998-09-16 03:26:10 +0000 |
| commit | cde5024e094741e794d0ff8167aa3c936f193b42 (patch) | |
| tree | 8bd920c083419eb6d7776bcaac4a01b3569412fa | |
| parent | 9a5722f2e848eebb61a211eb46ccba1d46289f38 (diff) | |
Notes
| -rw-r--r-- | sys/dev/aic7xxx/aic7xxx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c index 67366f4e55c7..1f21e0d09e3e 100644 --- a/sys/dev/aic7xxx/aic7xxx.c +++ b/sys/dev/aic7xxx/aic7xxx.c @@ -36,7 +36,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.113 1997/04/05 21:41:13 gibbs Exp $ + * $Id: aic7xxx.c,v 1.1 1998/09/15 07:24:16 gibbs Exp $ */ /* * A few notes on features of the driver. @@ -1112,7 +1112,7 @@ ahc_handle_target_cmd(struct ahc_softc *ahc) * to this accept tio. */ xpt_print_path(atio->ccb_h.path); - printf("Incoming Command did not disconnect %x\n", lstate); + printf("Incoming Command did not disconnect %p\n", lstate); ahc->pending_device = lstate; } xpt_done((union ccb*)atio); @@ -1745,8 +1745,8 @@ ahc_handle_scsiint(struct ahc_softc *ahc, u_int8_t intstat) case MSG_ABORT: xpt_print_path(scb->ccb->ccb_h.path); printf("SCB %d - Abort %s Completed.\n", - tag == SCB_LIST_NULL ? "" : "Tag", - scb->hscb->tag); + scb->hscb->tag, tag == SCB_LIST_NULL ? + "" : "Tag"); if ((scb->flags & SCB_RECOVERY_SCB) != 0) { ahc_set_ccb_status(scb->ccb, CAM_REQ_ABORTED); |
