From patchwork Fri Feb 27 05:19:35 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tetsuya Mukawa X-Patchwork-Id: 3764 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 84C565694; Fri, 27 Feb 2015 06:19:48 +0100 (CET) Received: from mail-pd0-f177.google.com (mail-pd0-f177.google.com [209.85.192.177]) by dpdk.org (Postfix) with ESMTP id BBDC13208 for ; Fri, 27 Feb 2015 06:19:46 +0100 (CET) Received: by pdbfp1 with SMTP id fp1so18424247pdb.9 for ; Thu, 26 Feb 2015 21:19:46 -0800 (PST) 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; bh=WL/XlGT08x+R4tFNiXUTva6qqF2FVLiR632L4EyvAuY=; b=cTgRO8/S+KJ4x5ETHJpYA+r0VSFPtvjU/+m2bKolqJ6QndFBHesDPUY6vDJvI3819p j63jGq85Yu4ChdoDZDV8bkYqy3rrcd/KxLW905vVdxnUGyzjv/Mp60W05i/vPk8BXtUe FcvEeEaa9zxqAVsN8tKUiavctgJ5QNS7Uo81MuLIXIfy3v+ED9QpCMw7Y9TUU+OUo8/O Zv/+ck3qbQVhes6aWZUavtjxScsUfNUgz8r+vs8uX2kHNh0m7mUzRmVmZQWzHusV40Yr cd7/J8pZU9/KYUiVzGk4lH5SccZbVX1oWdqPLo2TGLCObf5wxV9KJOn1SlOwb47d7rXs SOIw== X-Gm-Message-State: ALoCoQlbra/FzrHXPU5719oWa9dAO2lHOXWhTvfKBqZBnhEKF3VvpOoLGkGRh962imUICPrwqoi/ X-Received: by 10.68.224.71 with SMTP id ra7mr20847251pbc.140.1425014386018; Thu, 26 Feb 2015 21:19:46 -0800 (PST) Received: from localhost.localdomain (napt.igel.co.jp. [219.106.231.132]) by mx.google.com with ESMTPSA id mb5sm960079pdb.74.2015.02.26.21.19.44 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 26 Feb 2015 21:19:45 -0800 (PST) From: Tetsuya Mukawa To: dev@dpdk.org Date: Fri, 27 Feb 2015 14:19:35 +0900 Message-Id: <1425014375-15052-1-git-send-email-mukawa@igel.co.jp> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] librte_pmd_null: Fix build issue with icc 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" This patch fixes following errors with icc. rte_eth_null.c(47): error #83: type qualifier specified more than once Reported-by: Mcnamara, John Signed-off-by: Tetsuya Mukawa Acked-by: John McNamara --- lib/librte_pmd_null/rte_eth_null.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_pmd_null/rte_eth_null.c b/lib/librte_pmd_null/rte_eth_null.c index f8d7023..f7ef904 100644 --- a/lib/librte_pmd_null/rte_eth_null.c +++ b/lib/librte_pmd_null/rte_eth_null.c @@ -44,7 +44,7 @@ static unsigned default_packet_size = 64; static unsigned default_packet_copy; -static const char const *valid_arguments[] = { +static const char *valid_arguments[] = { ETH_NULL_PACKET_SIZE_ARG, ETH_NULL_PACKET_COPY_ARG, NULL