From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id CFA23D474 for ; Tue, 11 Apr 2017 17:45:47 +0200 (CEST) Received: by mail-wm0-f50.google.com with SMTP id w204so14464937wmd.1 for ; Tue, 11 Apr 2017 08:45:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=wuEYq1jT9eNDH3Q0xAKZuuRQO83EuP0yWoWZnvt1l+k=; b=YufhAveWskPN0YfKR7smgSpKcrrfM3tuKoA4LMo1ravPOYBFtkvLMmkiriUatCAoXu YRx0zcur0ame6D8PZfvOXEOxjRFyFwUfbs5q9fOxVXwEujnpP4T1wlz/WXzNjnu0HJvt Dhj75U6IWfWVWjT2MZdVhBR+Eu6YND0R+dQWj+gS8mmDI+Q4p5MzzZx7q3FfW6FNZvMG jelr0A6g/Wloc4GH+n9wlZJ09Qho432tUpimSGEbvkrVlSmeAlhTNEVOHnkIUgblzGrj up2Fci000jSuFuWu7xV148q6gBJmiY+F6on4lggcy7CK9mY39GpNAKOAUQuDWx9n4E1k 2KLA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=wuEYq1jT9eNDH3Q0xAKZuuRQO83EuP0yWoWZnvt1l+k=; b=umbtXt1AUa9hiIA8BoI/gStYhMNa0GN3YkbmROVm5kzF1SXg7d/v4WyL0j3rcSgTz9 xOcH3U7msrmRnyZJWLgY/b/8j2WeVAHIplKEYMQvs6eKa/W1fPS530O4eagjsZ9Q/J8L 22/NGokCT20nCRhQablC5xcu8tlSZ3evaMhblp0DsjynwxCnzToMoXoOi6ItDxDlT6ty nfrs9rjPcBoKQW6D1X8wBg5XEgZ5xdiTOZRSD3Dm7rvPsGdK5Z5vw8BVOyZWuYpsx37G eesqdUJYoAQB4nRtY02LCc13LIB6MBRc9goohyO5xKY5A4Ov9ArPJmrNPrqbV1s9+LeJ aZCg== X-Gm-Message-State: AN3rC/6W1VViWGGlVchpfNAMOSLyf2sJZUhas3pI9RAGzc/buPhd3IrY uYD4AOPRlWIoXLlqEk4= X-Received: by 10.28.7.13 with SMTP id 13mr15444719wmh.16.1491925547344; Tue, 11 Apr 2017 08:45:47 -0700 (PDT) Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id u63sm2933738wmu.22.2017.04.11.08.45.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 11 Apr 2017 08:45:46 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Jan Blunck Date: Tue, 11 Apr 2017 17:44:49 +0200 Message-Id: <7b9b8c5119dfe010ff0ac8d1ad3b3926707fed48.1491924900.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: <1488794430-25179-1-git-send-email-jblunck@infradead.org> In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 42/42] 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: , X-List-Received-Date: Tue, 11 Apr 2017 15:45:48 -0000 From: Jan Blunck 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 bd538b0..68a91e2 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 */ -- 2.1.4