From owner-svn-src-all@freebsd.org  Tue Sep  1 22:10:56 2020
Return-Path: <owner-svn-src-all@freebsd.org>
Delivered-To: svn-src-all@mailman.nyi.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.nyi.freebsd.org (Postfix) with ESMTP id B54B837F107;
 Tue,  1 Sep 2020 22:10:56 +0000 (UTC) (envelope-from mjg@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256
 client-signature RSA-PSS (4096 bits) client-digest SHA256)
 (Client CN "mxrelay.nyi.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4Bh1VS4SRjz3SfF;
 Tue,  1 Sep 2020 22:10:56 +0000 (UTC) (envelope-from mjg@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 7BDC52064B;
 Tue,  1 Sep 2020 22:10:56 +0000 (UTC) (envelope-from mjg@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 081MAuvS059903;
 Tue, 1 Sep 2020 22:10:56 GMT (envelope-from mjg@FreeBSD.org)
Received: (from mjg@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id 081MAtxw059900;
 Tue, 1 Sep 2020 22:10:55 GMT (envelope-from mjg@FreeBSD.org)
Message-Id: <202009012210.081MAtxw059900@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: mjg set sender to mjg@FreeBSD.org
 using -f
From: Mateusz Guzik <mjg@FreeBSD.org>
Date: Tue, 1 Sep 2020 22:10:55 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
 svn-src-head@freebsd.org
Subject: svn commit: r365218 - head/sys/dev/ciss
X-SVN-Group: head
X-SVN-Commit-Author: mjg
X-SVN-Commit-Paths: head/sys/dev/ciss
X-SVN-Commit-Revision: 365218
X-SVN-Commit-Repository: base
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.33
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for &quot;
 user&quot; and &quot; projects&quot; \)" <svn-src-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-all>,
 <mailto:svn-src-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-all/>
List-Post: <mailto:svn-src-all@freebsd.org>
List-Help: <mailto:svn-src-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-all>,
 <mailto:svn-src-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 01 Sep 2020 22:10:56 -0000

Author: mjg
Date: Tue Sep  1 22:10:55 2020
New Revision: 365218
URL: https://svnweb.freebsd.org/changeset/base/365218

Log:
  ciss: clean up empty lines in .c and .h files

Modified:
  head/sys/dev/ciss/ciss.c
  head/sys/dev/ciss/cissreg.h
  head/sys/dev/ciss/cissvar.h

Modified: head/sys/dev/ciss/ciss.c
==============================================================================
--- head/sys/dev/ciss/ciss.c	Tue Sep  1 22:10:34 2020	(r365217)
+++ head/sys/dev/ciss/ciss.c	Tue Sep  1 22:10:55 2020	(r365218)
@@ -272,7 +272,6 @@ TUNABLE_INT("hw.ciss.force_transport", &ciss_force_tra
 static int ciss_force_interrupt = 0;
 TUNABLE_INT("hw.ciss.force_interrupt", &ciss_force_interrupt);
 
-
 /************************************************************************
  * CISS adapters amazingly don't have a defined programming interface
  * value.  (One could say some very despairing things about PCI and
@@ -1457,7 +1456,6 @@ ciss_init_logical(struct ciss_softc *sc)
 	    sc->ciss_logical[i][j].cl_status = CISS_LD_NONEXISTENT;
     }
 
-
     for (i = 0; i < sc->ciss_cfg->max_logical_supported; i++) {
 	if (i < ndrives) {
 	    struct ciss_ldrive	*ld;
@@ -1476,7 +1474,6 @@ ciss_init_logical(struct ciss_softc *sc)
 	     */
 	    if (ld->cl_lstatus->media_exchanged)
 		ciss_accept_media(sc, ld);
-
 	}
     }
 
@@ -2127,7 +2124,6 @@ ciss_done(struct ciss_softc *sc, cr_qhead_t *qh)
      * to the completed queue.
      */
     for (;;) {
-
 	tag = CISS_TL_SIMPLE_FETCH_CMD(sc);
 	if (tag == CISS_TL_SIMPLE_OPQ_EMPTY)
 	    break;
@@ -2229,7 +2225,6 @@ ciss_perf_msi_intr(void *arg)
     mtx_unlock(&sc->ciss_mtx);
 }
 
-
 /************************************************************************
  * Process completed requests.
  *
@@ -2482,7 +2477,6 @@ ciss_abort_request(struct ciss_request *ar)
 }
 #endif
 
-
 /************************************************************************
  * Fetch and initialise a request
  */
@@ -2983,7 +2977,6 @@ ciss_cam_action(struct cam_sim *sim, union ccb *ccb)
     physical = CISS_IS_PHYSICAL(bus);
 
     switch (ccb->ccb_h.func_code) {
-
 	/* perform SCSI I/O */
     case XPT_SCSI_IO:
 	if (!ciss_cam_action_io(sim, csio))
@@ -3399,7 +3392,6 @@ ciss_cam_complete_fixup(struct ciss_softc *sc, struct 
 	(cdb[1] & SI_EVPD) == 0 &&
 	(csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN &&
 	csio->dxfer_len >= SHORT_INQUIRY_LENGTH) {
-
 	inq = (struct scsi_inquiry_data *)csio->data_ptr;
 	target = csio->ccb_h.target_id;
 	bus = cam_sim_bus(xpt_path_sim(csio->ccb_h.path));
@@ -3430,7 +3422,6 @@ ciss_cam_complete_fixup(struct ciss_softc *sc, struct 
     }
 }
 
-
 /********************************************************************************
  * Name the device at (target)
  *
@@ -4205,7 +4196,6 @@ ciss_notify_thread(void *arg)
 	}
 
 	ciss_release_request(cr);
-
     }
     sc->ciss_notify_thread = NULL;
     wakeup(&sc->ciss_notify_thread);
@@ -4478,7 +4468,6 @@ ciss_decode_ldrive_status(int status)
 	return(CISS_LD_OFFLINE);
     }
 }
-
 
 /************************************************************************
  * Return a name for a logical drive's organisation.

Modified: head/sys/dev/ciss/cissreg.h
==============================================================================
--- head/sys/dev/ciss/cissreg.h	Tue Sep  1 22:10:34 2020	(r365217)
+++ head/sys/dev/ciss/cissreg.h	Tue Sep  1 22:10:55 2020	(r365218)
@@ -855,6 +855,4 @@ struct ciss_bmic_flush_cache {
 	CISS_TL_SIMPLE_WRITE(sc, CISS_TL_SIMPLE_IMR, \
 			     CISS_TL_SIMPLE_READ(sc, CISS_TL_SIMPLE_IMR) & ~(sc)->ciss_interrupt_mask)
 
-
-
 #endif /* _KERNEL */

Modified: head/sys/dev/ciss/cissvar.h
==============================================================================
--- head/sys/dev/ciss/cissvar.h	Tue Sep  1 22:10:34 2020	(r365217)
+++ head/sys/dev/ciss/cissvar.h	Tue Sep  1 22:10:55 2020	(r365218)
@@ -315,7 +315,6 @@ struct ciss_softc
 	    sc->ciss_qstat[qname].q_max = 0;	\
 	} while(0)
 
-
 #define CISSQ_REQUEST_QUEUE(name, index)				\
 static __inline void							\
 ciss_initq_ ## name (struct ciss_softc *sc)				\