From: Dekel Peled Date: Mon, 1 Apr 2019 11:06:20 +0000 (+0300) Subject: eal: fix typo in comment of vector function X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f129008f5aa6c55327d75c9b42292bf70e4e1647;p=dpdk.git 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 --- 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)));