Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Nov 2023 01:55:33 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e2b27df9eb32 - main - mpi3mr: Minor style fix
Message-ID:  <202311290155.3AT1tXIW064292@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=e2b27df9eb324fa6e72e29d3185dcd6b390efa9d

commit e2b27df9eb324fa6e72e29d3185dcd6b390efa9d
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-11-29 01:49:16 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-11-29 01:49:16 +0000

    mpi3mr: Minor style fix
    
    Fold two lines to make this more readable.
    
    Sponsored by:           Netflix
    Reviewed by:            mav, jhb
    Differential Revision:  https://reviews.freebsd.org/D42540
---
 sys/dev/mpi3mr/mpi3mr_cam.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/dev/mpi3mr/mpi3mr_cam.c b/sys/dev/mpi3mr/mpi3mr_cam.c
index bb08943793df..430550e3edce 100644
--- a/sys/dev/mpi3mr/mpi3mr_cam.c
+++ b/sys/dev/mpi3mr/mpi3mr_cam.c
@@ -1212,8 +1212,7 @@ mpi3mr_action_scsiio(struct mpi3mr_cam_softc *cam_sc, union ccb *ccb)
 	}
 	req->Flags = htole32(mpi_control);
 
-	if (mpi3mr_submit_io(sc, opreqq,
-	    	(U8 *)&cm->io_request)) {
+	if (mpi3mr_submit_io(sc, opreqq, (U8 *)&cm->io_request)) {
 		mpi3mr_release_command(cm);
 		if (tracked_io_sz) {
 			mpi3mr_atomic_sub(&sc->pend_large_data_sz, tracked_io_sz);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202311290155.3AT1tXIW064292>