Re: [PATCH] dts: fix API doc build warnings

2024-11-20 Thread Patrick Robb
Thanks Luca, Thomas, I see Thomas just applied it to main, but I'll mention I tested with meson werror and I think this fix is appropriate. This is a good reminder for us to always build with --werror On Wed, Nov 20, 2024 at 10:54 AM Thomas Monjalon wrote: > 20/11/2024 16:05, Thomas Monjalon:

Re: [PATCH] dts: fix API doc build warnings

2024-11-20 Thread Thomas Monjalon
20/11/2024 16:05, Thomas Monjalon: > 20/11/2024 15:41, Luca Vizzarro: > > Sphinx-autodoc issues warnings about some symbols due to bad autodoc > > "automock"ing when optional dependencies are missing. > > > > The current meson setup allows to treat warnings as errors, halting the > > process and e

Re: [PATCH] dts: fix API doc build warnings

2024-11-20 Thread Thomas Monjalon
20/11/2024 15:41, Luca Vizzarro: > Sphinx-autodoc issues warnings about some symbols due to bad autodoc > "automock"ing when optional dependencies are missing. > > The current meson setup allows to treat warnings as errors, halting the > process and exiting early. Given these warnings should be ig

[PATCH] dts: fix API doc build warnings

2024-11-20 Thread Luca Vizzarro
Sphinx-autodoc issues warnings about some symbols due to bad autodoc "automock"ing when optional dependencies are missing. The current meson setup allows to treat warnings as errors, halting the process and exiting early. Given these warnings should be ignored, this patch removes this behavior. Un