svn commit: r187244 - head/sys/cam/scsi

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Jan 14 13:27:32 PST 2009


Author: trasz
Date: Wed Jan 14 21:27:30 2009
New Revision: 187244
URL: http://svn.freebsd.org/changeset/base/187244

Log:
  Remove unused variable.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation
  Found with:	Coverity Prevent(tm)
  CID:		3665

Modified:
  head/sys/cam/scsi/scsi_da.c

Modified: head/sys/cam/scsi/scsi_da.c
==============================================================================
--- head/sys/cam/scsi/scsi_da.c	Wed Jan 14 21:25:17 2009	(r187243)
+++ head/sys/cam/scsi/scsi_da.c	Wed Jan 14 21:27:30 2009	(r187244)
@@ -1021,7 +1021,6 @@ daasync(void *callback_arg, u_int32_t co
 	case AC_FOUND_DEVICE:
 	{
 		struct ccb_getdev *cgd;
-		struct cam_sim *sim;
 		cam_status status;
  
 		cgd = (struct ccb_getdev *)arg;
@@ -1038,7 +1037,6 @@ daasync(void *callback_arg, u_int32_t co
 		 * this device and start the probe
 		 * process.
 		 */
-		sim = xpt_path_sim(cgd->ccb_h.path);
 		status = cam_periph_alloc(daregister, daoninvalidate,
 					  dacleanup, dastart,
 					  "da", CAM_PERIPH_BIO,


More information about the svn-src-head mailing list