> On 9/15/2023 10:15 AM, Chaoyong He wrote: > > Follow the DPDK coding style, use the kdoc comment style. > > Also add some comment to help understand logic. > > > > Signed-off-by: Chaoyong He <chaoyong...@corigine.com> > > Reviewed-by: Niklas Söderlund <niklas.soderl...@corigine.com> > > <...> > > > > > -/* > > - * Set the model id > > - * > > - * @param cpp NFP CPP operations structure > > - * @param model Model ID > > - */ > > void nfp_cpp_model_set(struct nfp_cpp *cpp, uint32_t model); > > > > As I see some comments are removed in this patch, there is no enforced > comment style for internal functions, for API doxygen comments must > provided. > > Of course consistency matters, but if comments are removed because of the > syntax, I think better option to keep them with their own syntax.
Oh, I understand what you mean now. We are not removing it, we just keep the comment of functions in the place where it was defined (the implement file). I will make it clear in the commit message in the next version, thanks.