From fa2c752c0004c9f121dcad9cb348949f1bce9824 Mon Sep 17 00:00:00 2001 From: Ravi Pokala Date: Thu, 5 Jan 2017 02:54:03 +0000 Subject: [PATCH] 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. Sponsored by: Panasas --- sys/dev/advansys/adwcam.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/advansys/adwcam.c b/sys/dev/advansys/adwcam.c index 9485109f938..02f9c49d800 100644 --- a/sys/dev/advansys/adwcam.c +++ b/sys/dev/advansys/adwcam.c @@ -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;