Re: [PATCH] dts: fix doxygen API link

2024-10-24 Thread Paul Szczepanek
On 24/10/2024 10:12, David Marchand wrote: >> >> Looking again while applying, something is fishy in doc/api/meson.build: >> >> if not doxygen.found() >> # process DTS API doc build even if DPDK API doc build can't be done >> cdata = configuration_data() >> subdir('dts') >> subdir_done() >>

Re: [PATCH] dts: fix doxygen API link

2024-10-24 Thread David Marchand
On Wed, Oct 23, 2024 at 5:30 PM David Marchand wrote: > > On Wed, Oct 23, 2024 at 4:58 PM Paul Szczepanek > wrote: > > > > Alias used to produce the link to the DTS API docs uses config data. > > The required value in config data was being added in the wrong scope. > > This moves the key additio

Re: [PATCH] dts: fix doxygen API link

2024-10-24 Thread David Marchand
On Wed, Oct 23, 2024 at 4:58 PM Paul Szczepanek wrote: > > Alias used to produce the link to the DTS API docs uses config data. > The required value in config data was being added in the wrong scope. > This moves the key addition to where the config data object is created. > > Fixes: 7f9326423a04

Re: [PATCH] dts: fix doxygen API link

2024-10-23 Thread Patrick Robb
Yes that's fine thanks David!

Re: [PATCH] dts: fix doxygen API link

2024-10-23 Thread David Marchand
On Wed, Oct 23, 2024 at 4:58 PM Paul Szczepanek wrote: > > Alias used to produce the link to the DTS API docs uses config data. > The required value in config data was being added in the wrong scope. > This moves the key addition to where the config data object is created. > > Fixes: 7f9326423a04

Re: [PATCH] dts: fix doxygen API link

2024-10-23 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

[PATCH] dts: fix doxygen API link

2024-10-23 Thread Paul Szczepanek
Alias used to produce the link to the DTS API docs uses config data. The required value in config data was being added in the wrong scope. This moves the key addition to where the config data object is created. Fixes: 7f9326423a04 ("dts: add API doc generation") Signed-off-by: Paul Szczepanek Ac