Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Mar 2016 15:52:51 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r296458 - stable/10/sys/dev/firewire
Message-ID:  <201603071552.u27FqpMm073634@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603071552.u27FqpMm073634>