svn commit: r296458 - stable/10/sys/dev/firewire

Pedro F. Giffuni pfg at FreeBSD.org
Mon Mar 7 15:52:53 UTC 2016


Author: pfg
Date: Mon Mar  7 15:52:51 2016
New Revision: 296458
URL: https://svnweb.freebsd.org/changeset/base/296458

Log:
  MFC r295810:
  firewire: fix a mismatch introduced in r230558.
  
  Found by:	PVS Static Analysis
  Reviewed by:	sbruno

Modified:
  stable/10/sys/dev/firewire/sbp_targ.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/firewire/sbp_targ.c
==============================================================================
--- stable/10/sys/dev/firewire/sbp_targ.c	Mon Mar  7 15:44:54 2016	(r296457)
+++ stable/10/sys/dev/firewire/sbp_targ.c	Mon Mar  7 15:52:51 2016	(r296458)
@@ -1327,7 +1327,7 @@ sbp_targ_action1(struct cam_sim *sim, un
 				 | PIT_DISCONNECT
 				 | PIT_TERM_IO;
 		cpi->transport = XPORT_SPI; /* FIXME add XPORT_FW type to cam */
-		cpi->hba_misc = PIM_NOBUSRESET | PIM_NOBUSRESET;
+		cpi->hba_misc = PIM_NOBUSRESET | PIM_NO_6_BYTE;
 		cpi->hba_eng_cnt = 0;
 		cpi->max_target = 7; /* XXX */
 		cpi->max_lun = MAX_LUN - 1;


More information about the svn-src-stable-10 mailing list