[PATCH] docs/powerpc: add htm.rst to toctree to fix warning

2025-07-30 Thread Kriish Sharma
The htm.rst file was not included in any toctree, leading to a Sphinx warning when building documentation. Include it in Documentation/arch/powerpc/index.rst to fix the warning. Signed-off-by: Kriish Sharma --- Documentation/arch/powerpc/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 delet

Re: [PATCH] docs/powerpc: add htm.rst to toctree to fix warning

2025-07-30 Thread Jonathan Corbet
Kriish Sharma writes: > The htm.rst file was not included in any toctree, leading to a Sphinx > warning when building documentation. > > Include it in Documentation/arch/powerpc/index.rst to fix the warning. > > Signed-off-by: Kriish Sharma > --- > Documentation/arch/powerpc/index.rst | 2 +- >

Re: [PATCH] docs: powerpc: add htm.rst to toctree

2025-07-27 Thread Madhavan Srinivasan
On 7/27/25 9:11 PM, Randy Dunlap wrote: > Hi, > > On 7/27/25 4:01 AM, Vishal Parmar wrote: >> The file Documentation/arch/powerpc/htm.rst is not included in the >> index.rst toctree. This results in a warning when building the docs: >> >> WARNING: document isn't included in any toctree: htm.r

Re: [PATCH] docs: powerpc: add htm.rst to toctree

2025-07-27 Thread Randy Dunlap
Hi, On 7/27/25 4:01 AM, Vishal Parmar wrote: > The file Documentation/arch/powerpc/htm.rst is not included in the > index.rst toctree. This results in a warning when building the docs: > > WARNING: document isn't included in any toctree: htm.rst > > Add it to the index.rst file so that it is p

[PATCH] docs: powerpc: add htm.rst to toctree

2025-07-27 Thread Vishal Parmar
The file Documentation/arch/powerpc/htm.rst is not included in the index.rst toctree. This results in a warning when building the docs: WARNING: document isn't included in any toctree: htm.rst Add it to the index.rst file so that it is properly included in the PowerPC documentation TOC. Signed