From: Rami Rosen Date: Sat, 8 Jul 2017 21:55:16 +0000 (+0300) Subject: bus: remove wrong doxygen for dump function X-Git-Tag: spdx-start~2540 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2cb89ccd0a59424b248b23ee229fbe1014b2356d;p=dpdk.git bus: remove wrong doxygen for dump function 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) Fixes: a97725791eec ("bus: introduce bus abstraction") Signed-off-by: Rami Rosen --- diff --git a/lib/librte_eal/common/include/rte_bus.h b/lib/librte_eal/common/include/rte_bus.h index 37cc230adf..37858c8a28 100644 --- a/lib/librte_eal/common/include/rte_bus.h +++ b/lib/librte_eal/common/include/rte_bus.h @@ -230,10 +230,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);