svn commit: r315083 - head/sys/dev/aacraid

Andriy Gapon avg at FreeBSD.org
Sat Mar 11 18:40:40 UTC 2017


Author: avg
Date: Sat Mar 11 18:40:39 2017
New Revision: 315083
URL: https://svnweb.freebsd.org/changeset/base/315083

Log:
  aacraid: fix build with AACRAID_DEBUG=2
  
  MFC after:	10 days

Modified:
  head/sys/dev/aacraid/aacraid_cam.c

Modified: head/sys/dev/aacraid/aacraid_cam.c
==============================================================================
--- head/sys/dev/aacraid/aacraid_cam.c	Sat Mar 11 18:23:05 2017	(r315082)
+++ head/sys/dev/aacraid/aacraid_cam.c	Sat Mar 11 18:40:39 2017	(r315083)
@@ -243,10 +243,12 @@ static int
 aac_cam_probe(device_t dev)
 {
 	struct aac_cam *camsc;
+	struct aac_softc *sc;
 
 	camsc = (struct aac_cam *)device_get_softc(dev);
 	if (!camsc->inf)
 		return (0);
+	sc = camsc->inf->aac_sc;
 	fwprintf(sc, HBA_FLAGS_DBG_FUNCTION_ENTRY_B, "");
 	return (0);
 }
@@ -1134,15 +1136,17 @@ static void
 aac_container_complete(struct aac_command *cm)
 {
 	union	ccb *ccb;
+	struct	aac_softc *sc;
 	u_int32_t status;
 
+	sc = cm->cm_sc;
 	fwprintf(sc, HBA_FLAGS_DBG_FUNCTION_ENTRY_B, "");
 	ccb = cm->cm_ccb;
 	status = ((u_int32_t *)cm->cm_fib->data)[0];
 
 	if (cm->cm_flags & AAC_CMD_RESET) {
 		ccb->ccb_h.status = CAM_SCSI_BUS_RESET;
-	} else if (status == ST_OK) {	
+	} else if (status == ST_OK) {
 		ccb->ccb_h.status = CAM_REQ_CMP;
 	} else if (status == ST_NOT_READY) {
 		ccb->ccb_h.status = CAM_BUSY;


More information about the svn-src-head mailing list