From patchwork Mon Nov 24 21:24:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 1504 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 8A079530A; Mon, 24 Nov 2014 22:15:02 +0100 (CET) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by dpdk.org (Postfix) with ESMTP id CA9C23975 for ; Mon, 24 Nov 2014 22:15:00 +0100 (CET) Received: by mail-wi0-f172.google.com with SMTP id n3so7140276wiv.5 for ; Mon, 24 Nov 2014 13:25:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=ytGUEnLzZDESBeuRIC2cfnbJAmdwEnyxhE21DjXlthc=; b=ShB+UvhdzCged/LywNmBTGplKzaVlzyGJc7PdI/UhiJq3ZXdOCT0uQsB8HX5riwoXA lZXfghpt68mj8CPddVEOKEpRNA4wgqpTXv0vQr2wo9Zx7OOrru1+1EnFlNNA5OSYdQ7+ +wNsmH4Ush30omrMOOIIRcDxzigVeCDyEYn31RyHV7hP6Iym5QXhTjUMXPKCWpdtIhQx 5uKfdHCEDHYTaGy6Hd/lNnH3G0cCJDhDDUkEVTdHaayBfgHHEQhw8pciNU0+KWXvxSkW GL0pc4loj7wcUkUa97kLQa+66Ami7l2ytPCCvdxmBC1tSgqh8axOwRxiXqxel+UO/Z/J PmQw== X-Gm-Message-State: ALoCoQkYNGUYWOViLf2tu0ZxCDMp6Kmt82XuXt5z41zoTeA9RoX8B9jtrIbTeo6tVuwq2MvWAYVO X-Received: by 10.194.223.9 with SMTP id qq9mr38500735wjc.36.1416864350273; Mon, 24 Nov 2014 13:25:50 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id fo12sm13668782wic.19.2014.11.24.13.25.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 24 Nov 2014 13:25:49 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Mon, 24 Nov 2014 22:24:56 +0100 Message-Id: <1416864296-21518-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.1.3 Subject: [dpdk-dev] [PATCH] bond: fix doxygen X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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" There is no parameter delay_ms in *_delay_get functions. Signed-off-by: Thomas Monjalon --- lib/librte_pmd_bond/rte_eth_bond.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/librte_pmd_bond/rte_eth_bond.h b/lib/librte_pmd_bond/rte_eth_bond.h index 2ed4f7c..085500b 100644 --- a/lib/librte_pmd_bond/rte_eth_bond.h +++ b/lib/librte_pmd_bond/rte_eth_bond.h @@ -294,7 +294,6 @@ rte_eth_bond_link_down_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms) * link when the link down status has been detected * * @param bonded_port_id Port ID of bonded device. - * @param delay_ms Delay period in milliseconds. * * @return * Delay period on success, negative value otherwise. @@ -320,7 +319,6 @@ rte_eth_bond_link_up_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms); * link when the link up status has been detected * * @param bonded_port_id Port ID of bonded device. - * @param delay_ms Delay period in milliseconds. * * @return * Delay period on success, negative value otherwise.