From owner-svn-src-stable@freebsd.org Thu Jun 14 14:45:09 2018 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24091100A3AA; Thu, 14 Jun 2018 14:45:09 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CA2676DD0B; Thu, 14 Jun 2018 14:45:08 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A7DC51CD8; Thu, 14 Jun 2018 14:45:08 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5EEj8Vs015167; Thu, 14 Jun 2018 14:45:08 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5EEj8gf015166; Thu, 14 Jun 2018 14:45:08 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201806141445.w5EEj8gf015166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 14 Jun 2018 14:45:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r335137 - stable/11/sys/dev/advansys X-SVN-Group: stable-11 X-SVN-Commit-Author: mav X-SVN-Commit-Paths: stable/11/sys/dev/advansys X-SVN-Commit-Revision: 335137 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2018 14:45:09 -0000 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;