svn commit: r335137 - stable/11/sys/dev/advansys
Alexander Motin
mav at FreeBSD.org
Thu Jun 14 14:45:09 UTC 2018
Author: mav
Date: Thu Jun 14 14:45:08 2018
New Revision: 335137
URL: https://svnweb.freebsd.org/changeset/base/335137
Log:
MFC r311350 (by rpokala):
Fix whitespace in handling of XPT_PATH_INQ in adw(4).
Came across this while doing some other minor CAM cleanup. Whitespace-only
change, so not bothering w/ a review.
Modified:
stable/11/sys/dev/advansys/adwcam.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/advansys/adwcam.c
==============================================================================
--- stable/11/sys/dev/advansys/adwcam.c Thu Jun 14 13:42:58 2018 (r335136)
+++ stable/11/sys/dev/advansys/adwcam.c Thu Jun 14 14:45:08 2018 (r335137)
@@ -712,10 +712,10 @@ adw_action(struct cam_sim *sim, union ccb *ccb)
strlcpy(cpi->hba_vid, "AdvanSys", HBA_IDLEN);
strlcpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
cpi->unit_number = cam_sim_unit(sim);
- cpi->transport = XPORT_SPI;
- cpi->transport_version = 2;
- cpi->protocol = PROTO_SCSI;
- cpi->protocol_version = SCSI_REV_2;
+ cpi->transport = XPORT_SPI;
+ cpi->transport_version = 2;
+ cpi->protocol = PROTO_SCSI;
+ cpi->protocol_version = SCSI_REV_2;
cpi->ccb_h.status = CAM_REQ_CMP;
xpt_done(ccb);
break;
More information about the svn-src-stable
mailing list