From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 30472271 for ; Sat, 8 Jul 2017 23:55:16 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jul 2017 14:55:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,331,1496127600"; d="scan'208";a="990782890" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga003.jf.intel.com with ESMTP; 08 Jul 2017 14:55:14 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.70]) by imail001.iil.intel.com with ESMTP id v68LtCZX001927; Sun, 9 Jul 2017 00:55:12 +0300 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sun, 9 Jul 2017 00:55:16 +0300 Message-Id: <1499550916-12623-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH ] bus: remove comments about rte_bus_dump() return value. 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: , X-List-Received-Date: Sat, 08 Jul 2017 21:55:17 -0000 This trivial patch removes wrong comments about the return value of the rte_bus_dump(), as this method does not return any value (it's return type is void) Signed-off-by: Rami Rosen --- lib/librte_eal/common/include/rte_bus.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/librte_eal/common/include/rte_bus.h b/lib/librte_eal/common/include/rte_bus.h index aebf57efdd46..c223bc21962c 100644 --- a/lib/librte_eal/common/include/rte_bus.h +++ b/lib/librte_eal/common/include/rte_bus.h @@ -214,9 +214,6 @@ int rte_bus_probe(void); * @param f * A valid and open output stream handle * - * @return - * 0 in case of success - * !0 in case there is error in opening the output stream */ void rte_bus_dump(FILE *f); -- 2.7.4