[PATCH] hash: remove return statement from function returning void
Tyler Retzlaff
roretzla at linux.microsoft.com
Fri Mar 8 22:20:17 CET 2024
rte_thash_gfni_bulk and rte_thash_gfni_bulk_stub both return void.
Remove superfluous return statement from rte_thash_gfni_bulk.
Fixes: 944a03a5cfc1 ("hash: fix MSVC link on GFNI stubs")
Cc: stephen at networkplumber.org
Signed-off-by: Tyler Retzlaff <roretzla at linux.microsoft.com>
---
lib/hash/rte_thash_gfni.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/hash/rte_thash_gfni.h b/lib/hash/rte_thash_gfni.h
index edae2e8..132f375 100644
--- a/lib/hash/rte_thash_gfni.h
+++ b/lib/hash/rte_thash_gfni.h
@@ -71,7 +71,7 @@
rte_thash_gfni_bulk(const uint64_t *mtrx, int len, uint8_t *tuple[],
uint32_t val[], uint32_t num)
{
- return rte_thash_gfni_bulk_stub(mtrx, len, tuple, val, num);
+ rte_thash_gfni_bulk_stub(mtrx, len, tuple, val, num);
}
#endif /* RTE_THASH_GFNI_DEFINED */
--
1.8.3.1
More information about the dev
mailing list