summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-02-19 15:35:20 +0000
committerpfg <pfg@FreeBSD.org>2016-02-19 15:35:20 +0000
commita97d0cb74368d59b0f42a232f0939e03234a1f9e (patch)
tree2deb24183c8eb3eeb99656ba2d4ab33275ca9232
parent835428466ebd997fd3e97f975c0e3b6326d12c53 (diff)
downloadFreeBSD-src-a97d0cb74368d59b0f42a232f0939e03234a1f9e.zip
FreeBSD-src-a97d0cb74368d59b0f42a232f0939e03234a1f9e.tar.gz
firewire: fix a mismatch introduced in r230558.
Found by: PVS Static Analysis Reviewed by: sbruno MFC after: 1 month
-rw-r--r--sys/dev/firewire/sbp_targ.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/firewire/sbp_targ.c b/sys/dev/firewire/sbp_targ.c
index 0d78e9f..bd7e924 100644
--- a/sys/dev/firewire/sbp_targ.c
+++ b/sys/dev/firewire/sbp_targ.c
@@ -1324,7 +1324,7 @@ sbp_targ_action1(struct cam_sim *sim, union ccb *ccb)
| 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;
OpenPOWER on IntegriCloud