From patchwork Wed Feb 22 16:25:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 124388 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A539241D40; Wed, 22 Feb 2023 17:26:37 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B32A3430D6; Wed, 22 Feb 2023 17:25:57 +0100 (CET) Received: from mail-pl1-f181.google.com (mail-pl1-f181.google.com [209.85.214.181]) by mails.dpdk.org (Postfix) with ESMTP id C62AF43063 for ; Wed, 22 Feb 2023 17:25:52 +0100 (CET) Received: by mail-pl1-f181.google.com with SMTP id ky4so10530551plb.3 for ; Wed, 22 Feb 2023 08:25:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=15jFYzs2W59h3Fo/yDsHgZtIy230wKkJO6zN96pIiPA=; b=WzJ1yMqv4c18QKqp/pgbX2qRfUvaXbW9NepyM6M6r/+EQLmCP5AZYFmleLPjF4tEWG TbmwBlGCqlFLJUCw44QFyNKX6atdgVog/bNzaLxG3/++UU9AZQqJrrjx37WsSnJHBNsb guogqe6JmIA0b8CkqqEAs7ydyr+DByo+/yHjsS1VEIvWkGBIEHvTrIvrKqnIvH1TR+qJ Fie8iIhvQThnCnZSv1wikxa5OZ7gKImWpGVPs9z4gbtmDwq4kaqWx/M8hT7MNuRVyRTj zw+KpXPVZn5Gk6oR1+O8ZzV9RNQQFsmj5zE7kc1rzGJ+qyPhyCPjatLqnZTy1D0U43Aa f+jA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=15jFYzs2W59h3Fo/yDsHgZtIy230wKkJO6zN96pIiPA=; b=LnXk9qnpBhlK5gB7LUl1UMZarnsGgFJhOSwkiCr5CZkRN8pYfpAvin7OTSnO2E/Kbt jtMdOcnkOCP4FrPkcCAIKLj+/7OCklEbHWbvpd1PSvr/QP1+qz8ulnsui5/k4s3Xno2q a9htBA0kOpQK7/J9Ysbd8TyUrOAaQ74zSSJBVY1kYXA2h1x+sflY5BBoj8+4b/MIrMuc CIc5920rcgoNB4Z0pt+70DvbAAXeAUfF2dDLyHYuihFgSx3KMCWsuVOjCT+ykl35GflW QNMIoQbyryoUhFA2vkSLDWH/9+ppgEKwEKXmxMBkVbcKNo8wx3WeyhjHQRBliDCMQybe dTbg== X-Gm-Message-State: AO0yUKV5rMXPYYYuRdFd4BRLYd05moPllIueOq3qKdLURm3u54Lflr2W zWzsDQ8Ibu46A7y+aX/dllQPAqSAiCK3S5x5kc4= X-Google-Smtp-Source: AK7set+bv2grYuGUJ5gyUto1Mw5hlchSu8tuuujoZA8gDyQRRTzN8g9F5nyQfsk6W0vFxcaVBLiHmQ== X-Received: by 2002:a17:903:18e:b0:19a:5933:936e with SMTP id z14-20020a170903018e00b0019a5933936emr13191604plg.38.1677083151774; Wed, 22 Feb 2023 08:25:51 -0800 (PST) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id p5-20020a170902a40500b0019adfb96084sm1510781plq.36.2023.02.22.08.25.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 22 Feb 2023 08:25:51 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Rasesh Mody , Shahed Shaikh Subject: [PATCH v4 08/19] remove repeated word 'only' Date: Wed, 22 Feb 2023 08:25:28 -0800 Message-Id: <20230222162539.127103-9-stephen@networkplumber.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230222162539.127103-1-stephen@networkplumber.org> References: <0220722214106.162640-1-stephen@networkplumber.org> <20230222162539.127103-1-stephen@networkplumber.org> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Found by doing duplicate word scan. Signed-off-by: Stephen Hemminger Acked-by: Rasesh Mody --- drivers/net/bnx2x/bnx2x.c | 2 +- drivers/net/pcap/pcap_ethdev.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/bnx2x/bnx2x.c b/drivers/net/bnx2x/bnx2x.c index 74e3018eab6f..29c16bb207c7 100644 --- a/drivers/net/bnx2x/bnx2x.c +++ b/drivers/net/bnx2x/bnx2x.c @@ -5929,7 +5929,7 @@ static uint8_t bnx2x_trylock_hw_lock(struct bnx2x_softc *sc, uint32_t resource) /* * Get the recovery leader resource id according to the engine this function - * belongs to. Currently only only 2 engines is supported. + * belongs to. Currently only 2 engines are supported. */ static int bnx2x_get_leader_lock_resource(struct bnx2x_softc *sc) { diff --git a/drivers/net/pcap/pcap_ethdev.c b/drivers/net/pcap/pcap_ethdev.c index 5780f704b6dd..bfec0850456f 100644 --- a/drivers/net/pcap/pcap_ethdev.c +++ b/drivers/net/pcap/pcap_ethdev.c @@ -1337,7 +1337,7 @@ eth_from_pcaps(struct rte_vdev_device *vdev, internals->if_index = osdep_iface_index_get(rx_queues->queue[0].name); - /* phy_mac arg is applied only only if "iface" devarg is provided */ + /* phy_mac arg is applied only if "iface" devarg is provided */ if (rx_queues->phy_mac) { if (eth_pcap_update_mac(rx_queues->queue[0].name, eth_dev, vdev->device.numa_node) == 0)