ethdev: fix include of ethernet header file

The include for rte_ether.h in each of these files should not use
quotes, as the header file is not in the librte_ethdev directory.

These are now updated to use <> symbols, to search directories
pre-designated by the compiler.

Fixes: 57668ed7bc ("net: move ethernet definitions to the net library")
Cc: stable@dpdk.org

Signed-off-by: Ciara Power <ciara.power@intel.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
Ciara Power 2019-10-23 13:53:00 +01:00 committed by Ferruh Yigit
parent 6977f14517
commit 22a0763673
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
#include <stdint.h>
#include <rte_common.h>
#include "rte_ether.h"
#include <rte_ether.h>
#include "rte_flow.h"
/**

View file

@ -37,8 +37,8 @@
#include <rte_string_fns.h>
#include <rte_kvargs.h>
#include <rte_class.h>
#include <rte_ether.h>
#include "rte_ether.h"
#include "rte_ethdev.h"
#include "rte_ethdev_driver.h"
#include "ethdev_profile.h"

View file

@ -156,8 +156,8 @@ extern "C" {
#include <rte_errno.h>
#include <rte_common.h>
#include <rte_config.h>
#include <rte_ether.h>
#include "rte_ether.h"
#include "rte_dev_info.h"
extern int rte_eth_dev_logtype;