Re: [PATCH v2 1/2] drivers/common: fix void function returning a value

2025-02-10 Thread Bruce Richardson
On Wed, Jan 22, 2025 at 03:47:29PM +, Bruce Richardson wrote: > On Wed, Jan 22, 2025 at 07:20:43AM -0800, Andre Muezerie wrote: > > This patch avoids warnings like the one below emitted by MSVC: > > > > ../drivers/common/idpf/idpf_common_rxtx_avx512.c(139): > > warning C4098: 'idpf_singleq

Re: [PATCH v2 1/2] drivers/common: fix void function returning a value

2025-01-22 Thread Bruce Richardson
On Wed, Jan 22, 2025 at 07:20:43AM -0800, Andre Muezerie wrote: > This patch avoids warnings like the one below emitted by MSVC: > > ../drivers/common/idpf/idpf_common_rxtx_avx512.c(139): > warning C4098: 'idpf_singleq_rearm': > 'void' function returning a value > > Signed-off-by: Andre M

[PATCH v2 1/2] drivers/common: fix void function returning a value

2025-01-22 Thread Andre Muezerie
This patch avoids warnings like the one below emitted by MSVC: ../drivers/common/idpf/idpf_common_rxtx_avx512.c(139): warning C4098: 'idpf_singleq_rearm': 'void' function returning a value Signed-off-by: Andre Muezerie --- drivers/common/idpf/idpf_common_rxtx_avx512.c | 12