eal: fix duplicate function declaration
authorKevin Laatz <kevin.laatz@intel.com>
Wed, 14 Nov 2018 11:20:05 +0000 (11:20 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 18 Nov 2018 12:40:26 +0000 (13:40 +0100)
commit2ddd89c3c6a29e7fc37604c6ecc49d8933dba08e
tree2edb5c484e23bc429026cc45631d305af36f9e05
parent3e42b6ce06a1901b1ab631df4484ec8f548091c6
eal: fix duplicate function declaration

The rte_eal_get_runtime_dir() function is currently being declared in two
header files.

This API was made public in commit 6911c9fd8fbe ("eal: export function to
get runtime directory"), adding it to rte_eal.h. To make it public, the
'rte' prefix was added to the function so it needed to be modified in the
original location of the declaration, eal_filesystem.h.  By only modifying,
and not removing the decalration, it is now a duplicate.

This patch removes the declaration from eal_filesystem.h.

Fixes: 6911c9fd8fbe ("eal: export function to get runtime directory")

Reported-by: Anatoly Burakov <anatoly.burakov@intel.com>
Signed-off-by: Kevin Laatz <kevin.laatz@intel.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/librte_eal/common/eal_filesystem.h