Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Mar 2020 16:04:26 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r359441 - in head/sys: arm/nvidia/drm2 dev/bnxt dev/bxe dev/etherswitch/mtkswitch dev/hptnr dev/nvme dev/ocs_fc dev/pms/RefTisa/discovery/dm dev/pms/RefTisa/sallsdk/spc dev/pms/RefTisa/...
Message-ID:  <202003301604.02UG4QHu022491@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Mar 30 16:04:25 2020
New Revision: 359441
URL: https://svnweb.freebsd.org/changeset/base/359441

Log:
  remove extraneous double ;s in sys/

Modified:
  head/sys/arm/nvidia/drm2/tegra_dc.c
  head/sys/arm/nvidia/drm2/tegra_hdmi.c
  head/sys/dev/bnxt/bnxt_hwrm.c
  head/sys/dev/bnxt/bnxt_sysctl.c
  head/sys/dev/bxe/bxe.c
  head/sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c
  head/sys/dev/hptnr/hptnr_os_bsd.c
  head/sys/dev/nvme/nvme_qpair.c
  head/sys/dev/ocs_fc/ocs_hw_queues.c
  head/sys/dev/ocs_fc/ocs_io.c
  head/sys/dev/ocs_fc/ocs_mgmt.c
  head/sys/dev/ocs_fc/ocs_node.c
  head/sys/dev/pms/RefTisa/discovery/dm/dmdisc.c
  head/sys/dev/pms/RefTisa/sallsdk/spc/sainit.c
  head/sys/dev/pms/RefTisa/tisa/sassata/common/ossacmnapi.c
  head/sys/dev/pms/RefTisa/tisa/sassata/common/tdmisc.c
  head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itddisc.c
  head/sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
  head/sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
  head/sys/dev/qlxgbe/ql_hw.c
  head/sys/dev/smartpqi/smartpqi_queue.c
  head/sys/dev/smartpqi/smartpqi_request.c
  head/sys/dev/vnic/thunder_bgx.c
  head/sys/net/if_me.c

Modified: head/sys/arm/nvidia/drm2/tegra_dc.c
==============================================================================
--- head/sys/arm/nvidia/drm2/tegra_dc.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/arm/nvidia/drm2/tegra_dc.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -384,7 +384,7 @@ dc_setup_window(struct dc_softc *sc, unsigned int inde
 		v_size = win->src_w;
 	}
 
-	h_offset = win->src_x * bpp;;
+	h_offset = win->src_x * bpp;
 	v_offset = win->src_y;
 	if (win->flip_x) {
 		h_offset += win->src_w * bpp - 1;

Modified: head/sys/arm/nvidia/drm2/tegra_hdmi.c
==============================================================================
--- head/sys/arm/nvidia/drm2/tegra_hdmi.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/arm/nvidia/drm2/tegra_hdmi.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -341,7 +341,7 @@ static void
 avi_setup_infoframe(struct hdmi_softc *sc, struct drm_display_mode *mode)
 {
 	struct hdmi_avi_infoframe frame;
-	uint8_t buf[17], *hdr, *pb;;
+	uint8_t buf[17], *hdr, *pb;
 	ssize_t rv;
 
 	rv = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode);

Modified: head/sys/dev/bnxt/bnxt_hwrm.c
==============================================================================
--- head/sys/dev/bnxt/bnxt_hwrm.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/bnxt/bnxt_hwrm.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -861,7 +861,7 @@ bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt_softc *softc,
 	struct hwrm_cfa_l2_set_rx_mask_input req = {0};
 	struct bnxt_vlan_tag *tag;
 	uint32_t *tags;
-	uint32_t num_vlan_tags = 0;;
+	uint32_t num_vlan_tags = 0;
 	uint32_t i;
 	uint32_t mask = vnic->rx_mask;
 	int rc;

Modified: head/sys/dev/bnxt/bnxt_sysctl.c
==============================================================================
--- head/sys/dev/bnxt/bnxt_sysctl.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/bnxt/bnxt_sysctl.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1204,7 +1204,7 @@ bnxt_create_config_sysctls_pre(struct bnxt_softc *soft
 	struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(softc->dev);
 	struct sysctl_oid_list *children;
 
-	children = SYSCTL_CHILDREN(device_get_sysctl_tree(softc->dev));;
+	children = SYSCTL_CHILDREN(device_get_sysctl_tree(softc->dev));
 
 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "rss_key",
 	    CTLTYPE_STRING | CTLFLAG_RWTUN | CTLFLAG_NEEDGIANT, softc, 0,
@@ -1409,7 +1409,7 @@ bnxt_create_config_sysctls_post(struct bnxt_softc *sof
 	struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(softc->dev);
 	struct sysctl_oid_list *children;
 
-	children = SYSCTL_CHILDREN(device_get_sysctl_tree(softc->dev));;
+	children = SYSCTL_CHILDREN(device_get_sysctl_tree(softc->dev));
 
 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "vlan_only",
 	    CTLTYPE_INT | CTLFLAG_RWTUN | CTLFLAG_NEEDGIANT, softc, 0,

Modified: head/sys/dev/bxe/bxe.c
==============================================================================
--- head/sys/dev/bxe/bxe.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/bxe/bxe.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -15939,7 +15939,7 @@ static void bxe_force_link_reset(struct bxe_softc *sc)
 static int
 bxe_sysctl_pauseparam(SYSCTL_HANDLER_ARGS)
 {
-        struct bxe_softc *sc = (struct bxe_softc *)arg1;;
+        struct bxe_softc *sc = (struct bxe_softc *)arg1;
         uint32_t cfg_idx = bxe_get_link_cfg_idx(sc);
         int rc = 0;
         int error;

Modified: head/sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c
==============================================================================
--- head/sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -140,7 +140,7 @@ mtkswitch_reg_read32_mt7621(struct mtkswitch_softc *sc
 	low = mtkswitch_phy_read_locked(sc, MTKSWITCH_GLOBAL_PHY,
 	    MTKSWITCH_REG_LO(reg));
 	hi = mtkswitch_phy_read_locked(sc, MTKSWITCH_GLOBAL_PHY,
-	    MTKSWITCH_REG_HI(reg));;
+	    MTKSWITCH_REG_HI(reg));
 	return (low | (hi << 16));
 }
 

Modified: head/sys/dev/hptnr/hptnr_os_bsd.c
==============================================================================
--- head/sys/dev/hptnr/hptnr_os_bsd.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/hptnr/hptnr_os_bsd.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -90,7 +90,7 @@ BUS_ADDRESS get_dmapool_phy_addr(void *osext, void * d
 
 HPT_U32 pcicfg_read_dword(HPT_U8 bus, HPT_U8 dev, HPT_U8 func, HPT_U8 reg)
 {
-	return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4);;
+	return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4);
 }/* PCI space access */
 
 void *os_map_pci_bar(

Modified: head/sys/dev/nvme/nvme_qpair.c
==============================================================================
--- head/sys/dev/nvme/nvme_qpair.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/nvme/nvme_qpair.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -704,7 +704,7 @@ nvme_qpair_construct(struct nvme_qpair *qpair,
 	cmdsz = roundup2(cmdsz, PAGE_SIZE);
 	cplsz = qpair->num_entries * sizeof(struct nvme_completion);
 	cplsz = roundup2(cplsz, PAGE_SIZE);
-	prpsz = sizeof(uint64_t) * NVME_MAX_PRP_LIST_ENTRIES;;
+	prpsz = sizeof(uint64_t) * NVME_MAX_PRP_LIST_ENTRIES;
 	prpmemsz = qpair->num_trackers * prpsz;
 	allocsz = cmdsz + cplsz + prpmemsz;
 

Modified: head/sys/dev/ocs_fc/ocs_hw_queues.c
==============================================================================
--- head/sys/dev/ocs_fc/ocs_hw_queues.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/ocs_fc/ocs_hw_queues.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1625,7 +1625,7 @@ ocs_hw_qtop_parse(ocs_hw_t *hw, const char *qtop_strin
 	/* Parse the tokens */
 	for (s = qtop_string; (tokarray.inuse_count < tokarray.alloc_count) &&
 	     ((s = tokenize(s, &tokarray.tokens[tokarray.inuse_count]))) != NULL; ) {
-		tokarray.inuse_count++;;
+		tokarray.inuse_count++;
 	}
 
 	/* Allocate a queue topology structure */

Modified: head/sys/dev/ocs_fc/ocs_io.c
==============================================================================
--- head/sys/dev/ocs_fc/ocs_io.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/ocs_fc/ocs_io.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -110,7 +110,7 @@ ocs_io_pool_create(ocs_t *ocs, uint32_t num_io, uint32
 	io_pool = ocs_malloc(ocs, sizeof(*io_pool), OCS_M_ZERO | OCS_M_NOWAIT);
 	if (io_pool == NULL) {
 		ocs_log_err(ocs, "allocate of IO pool failed\n");
-		return NULL;;
+		return NULL;
 	}
 
 	io_pool->ocs = ocs;

Modified: head/sys/dev/ocs_fc/ocs_mgmt.c
==============================================================================
--- head/sys/dev/ocs_fc/ocs_mgmt.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/ocs_fc/ocs_mgmt.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -912,7 +912,7 @@ static int32_t
 ocs_mgmt_get_sfp(ocs_t *ocs, uint16_t page, void *buf, uint32_t buf_len)
 {
 	int rc = 0;
-	ocs_mgmt_sfp_result_t *result = ocs_malloc(ocs, sizeof(ocs_mgmt_sfp_result_t),  OCS_M_ZERO | OCS_M_NOWAIT);;
+	ocs_mgmt_sfp_result_t *result = ocs_malloc(ocs, sizeof(ocs_mgmt_sfp_result_t),  OCS_M_ZERO | OCS_M_NOWAIT);
 
 	ocs_sem_init(&(result->semaphore), 0, "get_sfp");
 	ocs_lock_init(ocs, &(result->cb_lock), "get_sfp");

Modified: head/sys/dev/ocs_fc/ocs_node.c
==============================================================================
--- head/sys/dev/ocs_fc/ocs_node.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/ocs_fc/ocs_node.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -205,7 +205,7 @@ ocs_node_find(ocs_sport_t *sport, uint32_t port_id)
 ocs_node_t *
 ocs_node_find_wwpn(ocs_sport_t *sport, uint64_t wwpn)
 {
-	ocs_node_t *node = NULL;;
+	ocs_node_t *node = NULL;
 
 	ocs_assert(sport, NULL);
 

Modified: head/sys/dev/pms/RefTisa/discovery/dm/dmdisc.c
==============================================================================
--- head/sys/dev/pms/RefTisa/discovery/dm/dmdisc.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/discovery/dm/dmdisc.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -505,11 +505,11 @@ dmDownStreamDiscovering(
   }
   else
   {
-    DMLIST_DEQUEUE_FROM_HEAD(&ExpanderList, &(onePortContext->discovery.discoveringExpanderList));;
+    DMLIST_DEQUEUE_FROM_HEAD(&ExpanderList, &(onePortContext->discovery.discoveringExpanderList));
     NextExpander = DMLIST_OBJECT_BASE(dmExpander_t, linkNode, ExpanderList);
     if ( NextExpander != agNULL)
     {
-      DMLIST_ENQUEUE_AT_HEAD(&(NextExpander->linkNode), &(onePortContext->discovery.discoveringExpanderList));;
+      DMLIST_ENQUEUE_AT_HEAD(&(NextExpander->linkNode), &(onePortContext->discovery.discoveringExpanderList));
       DM_DBG3(("dmDownStreamDiscovering tdsaSASDownStreamDiscovering: dequeue head\n"));
       DM_DBG3(("dmDownStreamDiscovering: expander id %d\n", NextExpander->id));
     }

Modified: head/sys/dev/pms/RefTisa/sallsdk/spc/sainit.c
==============================================================================
--- head/sys/dev/pms/RefTisa/sallsdk/spc/sainit.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/sallsdk/spc/sainit.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1765,7 +1765,7 @@ GLOBAL bit32 siConfiguration(
     for( i = 0; i < queueConfig->numInboundQueues; i ++ )
     {
       mpiConfig->inboundQueues[i].numElements   = (bit16)queueConfig->inboundQueues[i].elementCount;
-      mpiConfig->inboundQueues[i].elementSize   = (bit16)queueConfig->inboundQueues[i].elementSize;;
+      mpiConfig->inboundQueues[i].elementSize   = (bit16)queueConfig->inboundQueues[i].elementSize;
       mpiConfig->inboundQueues[i].priority      = queueConfig->inboundQueues[i].priority;
 
       SA_DBG2(("siConfiguration: IBQ%d:elementCount=%d elementSize=%d priority=%d Total Size 0x%X\n",

Modified: head/sys/dev/pms/RefTisa/tisa/sassata/common/ossacmnapi.c
==============================================================================
--- head/sys/dev/pms/RefTisa/tisa/sassata/common/ossacmnapi.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/tisa/sassata/common/ossacmnapi.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1757,7 +1757,7 @@ osGLOBAL void ossaHwCB(
     {
       TI_DBG1(("ossaHwCB: OSSA_HW_EVENT_PHY_STOP_STATUS, SUCCESS\n"));
       agContext = (agsaContext_t *)eventParm2;
-      onePortContext  = (tdsaPortContext_t *)agContext->osData;;
+      onePortContext  = (tdsaPortContext_t *)agContext->osData;
       if (onePortContext == agNULL)
       {
         TI_DBG1(("ossaHwCB: onePortContext is null, wrong!!!\n"));
@@ -3716,7 +3716,7 @@ ossaIntCoalesceInitCB(
   tiIntCoalesceContext_t    *tiIntCoalesceCxt;
   tdsaIntCoalesceContext_t  *tdsaIntCoalCxt;
   tdsaIntCoalesceContext_t  *tdsaIntCoalCxtHead
-    = (tdsaIntCoalesceContext_t *)tdsaAllShared->IntCoalesce;;
+    = (tdsaIntCoalesceContext_t *)tdsaAllShared->IntCoalesce;
   bit32                     tiStatus;
 
   TI_DBG2(("ossaIntCoalesceInitCB: start\n"));

Modified: head/sys/dev/pms/RefTisa/tisa/sassata/common/tdmisc.c
==============================================================================
--- head/sys/dev/pms/RefTisa/tisa/sassata/common/tdmisc.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/tisa/sassata/common/tdmisc.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1599,7 +1599,7 @@ tiCOMPassthroughCmndStart(
         break;
         
       case tiConfigureRteInfo:
-        SMPFn = SMP_CONFIGURE_ROUTING_INFORMATION;;
+        SMPFn = SMP_CONFIGURE_ROUTING_INFORMATION;
         if (tdPTCmndBody->protocol.SMP.IT == SMP_INITIATOR)
         {
           SMPFrameLen = sizeof(SmpReqConfigureRouteInformation_t);

Modified: head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itddisc.c
==============================================================================
--- head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itddisc.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itddisc.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1790,9 +1790,9 @@ tdsaSASDownStreamDiscovering(
   }
   else
   {
-    TDLIST_DEQUEUE_FROM_HEAD(&ExpanderList, &(onePortContext->discovery.discoveringExpanderList));;
+    TDLIST_DEQUEUE_FROM_HEAD(&ExpanderList, &(onePortContext->discovery.discoveringExpanderList));
     NextExpander = TDLIST_OBJECT_BASE(tdsaExpander_t, linkNode, ExpanderList);
-    TDLIST_ENQUEUE_AT_HEAD(&(NextExpander->linkNode), &(onePortContext->discovery.discoveringExpanderList));;
+    TDLIST_ENQUEUE_AT_HEAD(&(NextExpander->linkNode), &(onePortContext->discovery.discoveringExpanderList));
     tdsaSingleThreadedLeave(tiRoot, TD_DISC_LOCK);
     TI_DBG3(("tdssSASDiscoveringExpander tdsaSASDownStreamDiscovering: dequeue head\n"));
     TI_DBG3(("tdsaSASDownStreamDiscovering: expander id %d\n", NextExpander->id));

Modified: head/sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
==============================================================================
--- head/sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -19869,7 +19869,7 @@ bit32 satAddNComparebit32(bit8 *a, bit8 *b)
   }
 
 
-  return agFALSE;;
+  return agFALSE;
 }
 
 /*****************************************************************************/

Modified: head/sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
==============================================================================
--- head/sys/dev/pms/freebsd/driver/ini/src/agtiapi.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/pms/freebsd/driver/ini/src/agtiapi.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -3540,7 +3540,7 @@ static int agtiapi_PrepareSMPSGList( struct agtiapi_so
                     "not supported\n" );
     ccb->ccb_h.status = CAM_REQ_INVALID;
     xpt_done(ccb);
-    return tiReject;;
+    return tiReject;
   }
 
   if (ccbh->flags & CAM_SCATTER_VALID)
@@ -3556,7 +3556,7 @@ static int agtiapi_PrepareSMPSGList( struct agtiapi_so
                       "not supported\n" );
       ccb->ccb_h.status = CAM_REQ_INVALID;
       xpt_done(ccb);
-      return tiReject;;
+      return tiReject;
     }
     if ( csmpio->smp_request_sglist_cnt != 0 )
     {

Modified: head/sys/dev/qlxgbe/ql_hw.c
==============================================================================
--- head/sys/dev/qlxgbe/ql_hw.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/qlxgbe/ql_hw.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -4317,7 +4317,7 @@ ql_iscsi_pdu(qla_host_t *ha, struct mbuf *mp)
 			offset = hdrlen + 4;
 	
 			if (mp->m_len >= offset) {
-				th = (struct tcphdr *)(mp->m_data + hdrlen);;
+				th = (struct tcphdr *)(mp->m_data + hdrlen);
 			} else {
                                 m_copydata(mp, hdrlen, 4, buf);
 				th = (struct tcphdr *)buf;
@@ -4341,7 +4341,7 @@ ql_iscsi_pdu(qla_host_t *ha, struct mbuf *mp)
 			offset = hdrlen + 4;
 
 			if (mp->m_len >= offset) {
-				th = (struct tcphdr *)(mp->m_data + hdrlen);;
+				th = (struct tcphdr *)(mp->m_data + hdrlen);
 			} else {
 				m_copydata(mp, hdrlen, 4, buf);
 				th = (struct tcphdr *)buf;

Modified: head/sys/dev/smartpqi/smartpqi_queue.c
==============================================================================
--- head/sys/dev/smartpqi/smartpqi_queue.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/smartpqi/smartpqi_queue.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -282,7 +282,7 @@ void pqisrc_print_adminq_config(pqisrc_softstate_t *so
  */
 int pqisrc_create_admin_queue(pqisrc_softstate_t *softs)
 {
-	int ret = PQI_STATUS_SUCCESS;;
+	int ret = PQI_STATUS_SUCCESS;
 	uint32_t admin_q_param = 0;
 
 	DBG_FUNC("IN\n");
@@ -527,7 +527,7 @@ int pqisrc_destroy_admin_queue(pqisrc_softstate_t *sof
 int pqisrc_change_op_ibq_queue_prop(pqisrc_softstate_t *softs,
 			ib_queue_t *op_ib_q, uint32_t prop)
 {
-	int ret = PQI_STATUS_SUCCESS;;
+	int ret = PQI_STATUS_SUCCESS;
 	gen_adm_req_iu_t admin_req;
 	gen_adm_resp_iu_t admin_resp;
 
@@ -552,7 +552,7 @@ int pqisrc_change_op_ibq_queue_prop(pqisrc_softstate_t
 int pqisrc_create_op_obq(pqisrc_softstate_t *softs,
 			ob_queue_t *op_ob_q)
 {
-	int ret = PQI_STATUS_SUCCESS;;
+	int ret = PQI_STATUS_SUCCESS;
 	gen_adm_req_iu_t admin_req;
 	gen_adm_resp_iu_t admin_resp;
 
@@ -596,7 +596,7 @@ int pqisrc_create_op_obq(pqisrc_softstate_t *softs,
 int pqisrc_create_op_ibq(pqisrc_softstate_t *softs,
 			ib_queue_t *op_ib_q)
 {
-	int ret = PQI_STATUS_SUCCESS;;
+	int ret = PQI_STATUS_SUCCESS;
 	gen_adm_req_iu_t admin_req;
 	gen_adm_resp_iu_t admin_resp;
 
@@ -656,7 +656,7 @@ int pqisrc_create_op_aio_ibq(pqisrc_softstate_t *softs
 int pqisrc_create_op_raid_ibq(pqisrc_softstate_t *softs,
 			ib_queue_t *op_raid_ib_q)
 {
-	int ret = PQI_STATUS_SUCCESS;;
+	int ret = PQI_STATUS_SUCCESS;
 	
 	DBG_FUNC("IN\n");
 	

Modified: head/sys/dev/smartpqi/smartpqi_request.c
==============================================================================
--- head/sys/dev/smartpqi/smartpqi_request.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/smartpqi/smartpqi_request.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -548,7 +548,7 @@ int pqisrc_send_scsi_cmd_raidbypass(pqisrc_softstate_t
 			return PQI_STATUS_FAILURE;
 	/* Check for write to non-RAID-0. */
 	if (is_write && device->raid_level != SA_RAID_0)
-		return PQI_STATUS_FAILURE;;
+		return PQI_STATUS_FAILURE;
 
 	if(blk_cnt == 0) 
 		return PQI_STATUS_FAILURE;

Modified: head/sys/dev/vnic/thunder_bgx.c
==============================================================================
--- head/sys/dev/vnic/thunder_bgx.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/dev/vnic/thunder_bgx.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -1052,7 +1052,7 @@ bgx_init_hw(struct bgx *bgx)
 static void
 bgx_get_qlm_mode(struct bgx *bgx)
 {
-	device_t dev = bgx->dev;;
+	device_t dev = bgx->dev;
 	int lmac_type;
 	int train_en;
 

Modified: head/sys/net/if_me.c
==============================================================================
--- head/sys/net/if_me.c	Mon Mar 30 15:36:38 2020	(r359440)
+++ head/sys/net/if_me.c	Mon Mar 30 16:04:25 2020	(r359441)
@@ -194,7 +194,7 @@ me_clone_create(struct if_clone *ifc, int unit, caddr_
 	ME2IFP(sc)->if_softc = sc;
 	if_initname(ME2IFP(sc), mename, unit);
 
-	ME2IFP(sc)->if_mtu = MEMTU;;
+	ME2IFP(sc)->if_mtu = MEMTU;
 	ME2IFP(sc)->if_flags = IFF_POINTOPOINT|IFF_MULTICAST;
 	ME2IFP(sc)->if_output = me_output;
 	ME2IFP(sc)->if_ioctl = me_ioctl;



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