From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH 2/2] ethdev: fix vendor id in debug message Date: Fri, 7 Oct 2016 15:01:16 +0200 Message-ID: <1475845276-25527-2-git-send-email-david.marchand@6wind.com> References: <1475845276-25527-1-git-send-email-david.marchand@6wind.com> Cc: dev@dpdk.org, danielx.t.mrzyglod@intel.com, shreyansh.jain@nxp.com To: thomas.monjalon@6wind.com Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 5A5EE5595 for ; Fri, 7 Oct 2016 15:01:23 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id f193so31382126wmg.0 for ; Fri, 07 Oct 2016 06:01:23 -0700 (PDT) In-Reply-To: <1475845276-25527-1-git-send-email-david.marchand@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixes: af75078fece3 ("first public release") Signed-off-by: David Marchand --- lib/librte_ether/rte_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 24029f0..88fa382 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -274,7 +274,7 @@ rte_eth_dev_pci_probe(struct rte_pci_driver *pci_drv, if (diag == 0) return 0; - RTE_PMD_DEBUG_TRACE("driver %s: eth_dev_init(vendor_id=0x%u device_id=0x%x) failed\n", + RTE_PMD_DEBUG_TRACE("driver %s: eth_dev_init(vendor_id=0x%x device_id=0x%x) failed\n", pci_drv->driver.name, (unsigned) pci_dev->id.vendor_id, (unsigned) pci_dev->id.device_id); -- 2.7.4