From d6ae6ece7fdb9c4013a0e4aab2332c08e556c623 Mon Sep 17 00:00:00 2001 From: jsg Date: Fri, 20 Sep 2024 02:15:53 +0000 Subject: [PATCH] remove unneeded semicolon --- sys/dev/pci/if_ngbe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/if_ngbe.c b/sys/dev/pci/if_ngbe.c index 769c648b5e1..7c7a6eb24b6 100644 --- a/sys/dev/pci/if_ngbe.c +++ b/sys/dev/pci/if_ngbe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ngbe.c,v 1.5 2024/05/24 06:02:56 jsg Exp $ */ +/* $OpenBSD: if_ngbe.c,v 1.6 2024/09/20 02:15:53 jsg Exp $ */ /* * Copyright (c) 2015-2017 Beijing WangXun Technology Co., Ltd. @@ -1707,7 +1707,7 @@ ngbe_initialize_transmit_unit(struct ngbe_softc *sc) struct tx_ring *txr; uint64_t tdba; uint32_t txdctl; - int i, wait_loop = NGBE_MAX_RX_DESC_POLL;; + int i, wait_loop = NGBE_MAX_RX_DESC_POLL; int error = 0; /* TDM_CTL.TE must be before Tx queues are enabled */ -- 2.20.1