From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id 45A8A4C93 for ; Tue, 14 Aug 2018 13:13:07 +0200 (CEST) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=lap.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fpXAs-0000wO-8I; Tue, 14 Aug 2018 11:07:42 +0000 From: Christian Ehrhardt To: Rami Rosen Cc: Ferruh Yigit , dpdk stable Date: Tue, 14 Aug 2018 13:06:49 +0200 Message-Id: <20180814110651.25277-46-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180814110651.25277-1-christian.ehrhardt@canonical.com> References: <20180814110651.25277-1-christian.ehrhardt@canonical.com> Subject: [dpdk-stable] patch 'ethdev: fix a doxygen comment for port allocation' has been queued to stable release 18.05.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 11:13:07 -0000 Hi, FYI, your patch has been queued to stable release 18.05.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/16/18. So please shout if anyone has objections. Thanks. Christian Ehrhardt --- >>From 3eb73c07289e2ba1070193cae614cb250a3cf4b8 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Sun, 5 Aug 2018 23:03:28 +0300 Subject: [PATCH] ethdev: fix a doxygen comment for port allocation [ upstream commit 2da7f0146e47833215e68f2c658b4275b8d609fc ] This patch fixes a doxygen comment of the rte_eth_dev_allocate() method. There is no parameter named "type" for this method; so this patch removes the doxygen comment about it. Fixes: 6751f6deb798 ("ethdev: get rid of device type") Signed-off-by: Rami Rosen Acked-by: Ferruh Yigit --- lib/librte_ethdev/rte_ethdev_driver.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/librte_ethdev/rte_ethdev_driver.h b/lib/librte_ethdev/rte_ethdev_driver.h index c9c825e3f..f158462a0 100644 --- a/lib/librte_ethdev/rte_ethdev_driver.h +++ b/lib/librte_ethdev/rte_ethdev_driver.h @@ -38,7 +38,6 @@ struct rte_eth_dev *rte_eth_dev_allocated(const char *name); * to that slot for the driver to use. * * @param name Unique identifier name for each Ethernet device - * @param type Device type of this Ethernet device * @return * - Slot in the rte_dev_devices array for a new device; */ -- 2.17.1