From patchwork Fri Jul 24 17:06:16 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 6586 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id A7657C48A; Fri, 24 Jul 2015 19:06:25 +0200 (CEST) Received: from mail-pd0-f182.google.com (mail-pd0-f182.google.com [209.85.192.182]) by dpdk.org (Postfix) with ESMTP id 9DD83C46E for ; Fri, 24 Jul 2015 19:06:21 +0200 (CEST) Received: by pdrg1 with SMTP id g1so16368522pdr.2 for ; Fri, 24 Jul 2015 10:06:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=zVsvhmYp43DS7JWaZpigmq3YJB37/n98OIOC08RCXbY=; b=dUgZQnRQmb7uNjqv5DbkD6TvIVa/gdhNGdLhznlG+NiuiOQ0Fcjo4fZhbA+fwgXKyL XzpYrI46kqVrgrbJ7jOsdE/ZNgxFQrO6xf614ooUETraJ8S5EtRWLKn5ZiCc4wrVJ77Z EKQTlqzgSK8a55EaUu3CHivKRqjP6TmE1Wqcd3klW8EMWWqvOJGMvY5SEdiROky3YUCW WWQi8iZBhnvhkV+EcnLD+3dGz/dCp7UfHct+7lHC76iDodc6udQL05ZdOTGOMDTWyT4Q ruF4ZL1Ms7iz9SbWtrvL8Ji8ppD8RGuqte/d27gdqJADQwlDgm8AlKwhKJKawfavbfhH VZcw== X-Gm-Message-State: ALoCoQltMmckeO+mpLAq1BtOA7CdFFq9My9sRTs5wPV8Rgx7VwzFIAiEPK7TM0cyFjUSGu/VLqNW X-Received: by 10.70.34.171 with SMTP id a11mr32868412pdj.18.1437757580949; Fri, 24 Jul 2015 10:06:20 -0700 (PDT) Received: from urahara.home.lan (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by smtp.gmail.com with ESMTPSA id ra10sm15635403pab.19.2015.07.24.10.06.19 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 24 Jul 2015 10:06:20 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Date: Fri, 24 Jul 2015 10:06:16 -0700 Message-Id: <1437757584-15502-4-git-send-email-stephen@networkplumber.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1437757584-15502-1-git-send-email-stephen@networkplumber.org> References: <1437757584-15502-1-git-send-email-stephen@networkplumber.org> Subject: [dpdk-dev] [PATCH 03/11] kni: remove useless semicolon X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Found by coccinelle semicolon.cocci script Signed-off-by: Stephen Hemminger --- lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_common.c b/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_common.c index 93659ca..1b78902 100644 --- a/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_common.c +++ b/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_common.c @@ -1534,7 +1534,7 @@ static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw) udelay(5); ixgbe_standby_eeprom(hw); - }; + } /* * On some parts, SPI write time could vary from 0-20mSec on 3.3V @@ -1616,7 +1616,7 @@ static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data, * EEPROM */ mask = mask >> 1; - }; + } /* We leave the "DI" bit set to "0" when we leave this routine. */ eec &= ~IXGBE_EEC_DI;