From f129008f5aa6c55327d75c9b42292bf70e4e1647 Mon Sep 17 00:00:00 2001 From: Dekel Peled Date: Mon, 1 Apr 2019 14:06:20 +0300 Subject: [PATCH] eal: fix typo in comment of vector function Remove redundant item 'a4' in comment. Fixes: 86c743cf9140 ("eal: define generic vector types") Cc: stable@dpdk.org Signed-off-by: Dekel Peled --- lib/librte_eal/common/include/generic/rte_vect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/include/generic/rte_vect.h b/lib/librte_eal/common/include/generic/rte_vect.h index 11c6475b9b..3fc47979f8 100644 --- a/lib/librte_eal/common/include/generic/rte_vect.h +++ b/lib/librte_eal/common/include/generic/rte_vect.h @@ -55,7 +55,7 @@ typedef uint16_t rte_v128u16_t __attribute__((vector_size(16), aligned(16))); /** * 128 bits vector size to use with unsigned 32 bits elements. * - * a = (rte_v128u32_t){ a0, a1, a2, a3, a4 } + * a = (rte_v128u32_t){ a0, a1, a2, a3 } */ typedef uint32_t rte_v128u32_t __attribute__((vector_size(16), aligned(16))); -- 2.20.1