On Fri, 5 Apr 2024 01:22:59 +0000 "Chautru, Nicolas" <nicolas.chau...@intel.com> wrote:
> Hi Stephen, > > Your script is causing some odd line split which are not required I believe. > Also doing mix of space and tabs. > > - rte_memcpy(&desc->req.fcw_ld, &desc_first->req.fcw_ld, > ACC_FCW_LD_BLEN); > + memcpy(&desc->req.fcw_ld, &desc_first->req.fcw_ld, > + ACC_FCW_LD_BLEN); The coccinelle spatch tool seems to still think that max line length should be 80. Will fix these manually.