summaryrefslogtreecommitdiff
path: root/lib/net
diff options
context:
space:
mode:
authorDavid Marchand <david.marchand@redhat.com>2023-11-17 14:18:22 +0100
committerDavid Marchand <david.marchand@redhat.com>2023-12-21 10:19:47 +0100
commitae282b0611c33aa73a01ee6137d116155053b835 (patch)
treedcf80248c9fafac428bf0ed053c17b408e470851 /lib/net
parent8e2407e46782d43f9a1d83d72e279a4f86389bcd (diff)
lib: remove redundant newline from logs
Fix places where two newline characters may be logged. Cc: stable@dpdk.org Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Reviewed-by: Chengwen Feng <fengchengwen@huawei.com> Acked-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/rte_net_crc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/rte_net_crc.c b/lib/net/rte_net_crc.c
index a685f9e7bb..900d6de7f4 100644
--- a/lib/net/rte_net_crc.c
+++ b/lib/net/rte_net_crc.c
@@ -179,7 +179,7 @@ avx512_vpclmulqdq_get_handlers(void)
max_simd_bitwidth >= RTE_VECT_SIMD_512)
return handlers_avx512;
#endif
- NET_LOG(INFO, "Requirements not met, can't use AVX512\n");
+ NET_LOG(INFO, "Requirements not met, can't use AVX512");
return NULL;
}
@@ -205,7 +205,7 @@ sse42_pclmulqdq_get_handlers(void)
max_simd_bitwidth >= RTE_VECT_SIMD_128)
return handlers_sse42;
#endif
- NET_LOG(INFO, "Requirements not met, can't use SSE\n");
+ NET_LOG(INFO, "Requirements not met, can't use SSE");
return NULL;
}
@@ -231,7 +231,7 @@ neon_pmull_get_handlers(void)
max_simd_bitwidth >= RTE_VECT_SIMD_128)
return handlers_neon;
#endif
- NET_LOG(INFO, "Requirements not met, can't use NEON\n");
+ NET_LOG(INFO, "Requirements not met, can't use NEON");
return NULL;
}