From 8c3c2372ed304834609521cc96194fc0a41ce06a Mon Sep 17 00:00:00 2001 From: Adrien Mazarguil Date: Thu, 24 May 2018 14:17:55 +0200 Subject: [PATCH] net/mlx5: fix errno object in probe function Fixes: a6d83b6a9209 ("net/mlx5: standardize on negative errno values") Cc: stable@dpdk.org Signed-off-by: Adrien Mazarguil Acked-by: Yongseok Koh --- drivers/net/mlx5/mlx5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c index 60575db690..efc502aba0 100644 --- a/drivers/net/mlx5/mlx5.c +++ b/drivers/net/mlx5/mlx5.c @@ -1062,7 +1062,7 @@ mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, DRV_LOG(ERR, "port %u cannot get MAC address, is mlx5_en" " loaded? (errno: %s)", - eth_dev->data->port_id, strerror(errno)); + eth_dev->data->port_id, strerror(rte_errno)); err = ENODEV; goto port_error; } -- 2.20.1