aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2017-02-27 17:50:38 +0000
committerAlexander Motin <mav@FreeBSD.org>2017-02-27 17:50:38 +0000
commit64e574c22d3a9ea3388c492fe2832d92cc7234cd (patch)
tree07d1dc02070081b465cf49e4b46d12db89200e58 /sys/dev/firewire
parent63509269e861331092f90a76e75f9e1bd821e839 (diff)
downloadsrc-64e574c22d3a9ea3388c492fe2832d92cc7234cd.tar.gz
src-64e574c22d3a9ea3388c492fe2832d92cc7234cd.zip
Announce that sbp_targ(4) does not support initiator mode.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=314358
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/sbp_targ.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/firewire/sbp_targ.c b/sys/dev/firewire/sbp_targ.c
index a852227dfaf3..cc7c484041bd 100644
--- a/sys/dev/firewire/sbp_targ.c
+++ b/sys/dev/firewire/sbp_targ.c
@@ -1324,7 +1324,8 @@ 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_NO_6_BYTE;
+ cpi->hba_misc = PIM_NOINITIATOR | PIM_NOBUSRESET |
+ PIM_NO_6_BYTE;
cpi->hba_eng_cnt = 0;
cpi->max_target = 7; /* XXX */
cpi->max_lun = MAX_LUN - 1;