From patchwork Mon Mar 6 10:00:30 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Blunck X-Patchwork-Id: 21466 X-Patchwork-Delegate: thomas@monjalon.net 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 B14B4F971; Mon, 6 Mar 2017 11:02:33 +0100 (CET) Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by dpdk.org (Postfix) with ESMTP id C6C7BF60E for ; Mon, 6 Mar 2017 11:01:28 +0100 (CET) Received: by mail-wm0-f68.google.com with SMTP id v190so12808586wme.3 for ; Mon, 06 Mar 2017 02:01:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:from:to:subject:date:message-id:in-reply-to:references; bh=XHQGjdUROK4d2QTIm1QA0PSGtnE2O1RlgZ433JKUgKo=; b=UunmKcW8/8zGDhEoZF8hQVz3Ey2eWqERUuNYEdjN6ENWxseFyhQWCz1Yg7DezUIvrf QCZr7i4jEuW5w1eSaI8PjDNG/kE/3KslagszpM7ITDH0osDd5DYRow1TC9J8vtZ9wnl3 xuoam+mhLe/w5M2/BGbUrFULc1FgtQ++RWhhAF4lLl4vlylxdepKEf5XdMCQPSG33yt4 qy8rLD5fpZti1DY8oVbNzmJvXq3/qWQxDBo5TejyiBlrkoIWbrM0Dx+RtgSJ7EvPqg9j nv+Co66lxVaZGRXqsPhhmg/iQ1pIM6xPjtY7dzwWyoFZ/Zh4LT3bcsSUj9Wk2hVR0+0H F/TQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:from:to:subject:date:message-id :in-reply-to:references; bh=XHQGjdUROK4d2QTIm1QA0PSGtnE2O1RlgZ433JKUgKo=; b=lkmI2H8lqgQL/IFDLN0m0eu4oNL23QtirmcmiYLmth0loW5ZUURuzNCdxGEcJCtGvW lq3RYcSGw9BnCMAl0Xf2llbru6t5UtOf5Wl+IHZQ/jNOC+L38rjf8VG3dAwgZWuFbLT5 4lFhBomXsy0ybcdAwYqKZduD3HGlPntRu56uKUYBJQHytsOpVTUvMh4XHoa2djUP9xaw tJMkteSFq4mXfMJ5DgUhfp5KtJrA8BshGG5GkjypuIJYtCgGEzFwe0kZ2jbUz8PhJ4T6 VmNtpee6Ah4WgDvOGYL6ozm59LulD2Yq9HFLbitHFLqNXQh+XyB2o+jRal9L+zLxr5dx 1F9A== X-Gm-Message-State: AMke39nXqwQZjpvX0q/KU8J+QxzYFf4umkM/U+gJmpfuSPQxh+qAD3brEZew6ss95u7cbQ== X-Received: by 10.28.198.132 with SMTP id w126mr12930065wmf.69.1488794488453; Mon, 06 Mar 2017 02:01:28 -0800 (PST) Received: from weierstrass.local.net ([91.200.109.169]) by smtp.gmail.com with ESMTPSA id u145sm3829237wmu.1.2017.03.06.02.01.27 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 06 Mar 2017 02:01:27 -0800 (PST) From: Jan Blunck To: dev@dpdk.org Date: Mon, 6 Mar 2017 11:00:30 +0100 Message-Id: <1488794430-25179-39-git-send-email-jblunck@infradead.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1488794430-25179-1-git-send-email-jblunck@infradead.org> References: <1488794430-25179-1-git-send-email-jblunck@infradead.org> Subject: [dpdk-dev] [PATCH 38/38] ethdev: don't include PCI header X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Since the PCI functionality has been moved to the PCI specific ethdev header we don't need to include rte_pci.h from here anymore. Signed-off-by: Jan Blunck --- lib/librte_ether/rte_ethdev.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index 7259cb8..a646ac8 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -179,7 +179,6 @@ extern "C" { #include #include -#include #include #include #include @@ -901,6 +900,8 @@ struct rte_eth_conf { #define DEV_TX_OFFLOAD_GENEVE_TNL_TSO 0x00001000 /**< Used for tunneling packet. */ #define DEV_TX_OFFLOAD_MACSEC_INSERT 0x00002000 +struct rte_pci_device; + /** * Ethernet device information */