aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aha
diff options
context:
space:
mode:
authorRavi Pokala <rpokala@FreeBSD.org>2017-01-05 03:08:57 +0000
committerRavi Pokala <rpokala@FreeBSD.org>2017-01-05 03:08:57 +0000
commitd3c06026c2bac2ca95e210400df2d0002c735d9a (patch)
tree53fdf8190d7929489792b81c95362e3dbdf342bf /sys/dev/aha
parentfa2c752c0004c9f121dcad9cb348949f1bce9824 (diff)
downloadsrc-d3c06026c2bac2ca95e210400df2d0002c735d9a.tar.gz
src-d3c06026c2bac2ca95e210400df2d0002c735d9a.zip
In the same vein as r311350, fix whitespace in handling of XPT_PATH_INQ in
several more drivers. Sponsored by: Panasas
Notes
Notes: svn path=/head/; revision=311351
Diffstat (limited to 'sys/dev/aha')
-rw-r--r--sys/dev/aha/aha.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c
index 9e8511bdbf9c..1fed39fb36d3 100644
--- a/sys/dev/aha/aha.c
+++ b/sys/dev/aha/aha.c
@@ -951,10 +951,10 @@ ahaaction(struct cam_sim *sim, union ccb *ccb)
strlcpy(cpi->hba_vid, "Adaptec", 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;