From patchwork Sun Aug 5 20:03:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 43590 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8A8301B599; Sun, 5 Aug 2018 22:09:26 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 0DB0C1B583 for ; Sun, 5 Aug 2018 22:09:24 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Aug 2018 13:09:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,449,1526367600"; d="scan'208";a="80827968" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga002.jf.intel.com with ESMTP; 05 Aug 2018 13:05:41 -0700 Received: from rubyhost.iil.intel.com (rubyhost.iil.intel.com [143.185.141.89]) by imail001.iil.intel.com with ESMTP id w75K5TKJ008189; Sun, 5 Aug 2018 23:05:30 +0300 From: Rami Rosen To: dev@dpdk.org Cc: ferruh.yigit@intel.com, arybchenko@solarflare.com, Rami Rosen Date: Sun, 5 Aug 2018 23:03:28 +0300 Message-Id: <1533499408-12931-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] Fix a doxygen comment of rte_eth_dev_allocate() X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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. 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 e2426af..c6d9bc1 100644 --- a/lib/librte_ethdev/rte_ethdev_driver.h +++ b/lib/librte_ethdev/rte_ethdev_driver.h @@ -38,7 +38,6 @@ * 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; */