> From 1d7ab80e5388d993b7b262b24da1f3e55f30f508 Mon Sep 17 00:00:00 2001 > From: Mike Rapoport <rppt@xxxxxxxxxxxxxxxxxx> > Date: Tue, 11 Sep 2018 19:16:36 +0300 > Subject: [PATCH] docs/boot-time-mm: fix kernel-doc directive for including all > but DOC: > > There were several rounds of the patches that enabled "functions" directive > with no parameters in kerneldoc.py to allow including all the kernel-doc > comments except the DOC: sections. > > Yet, the boot-time-mm.rst sneaked in with the older version of that > directive and was not updated. Update it now. > > Signed-off-by: Mike Rapoport <rppt@xxxxxxxxxxxxxxxxxx> Tested-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Thanks. > --- > Documentation/core-api/boot-time-mm.rst | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Documentation/core-api/boot-time-mm.rst b/Documentation/core-api/boot-time-mm.rst > index 03cb164..6e12e89 100644 > --- a/Documentation/core-api/boot-time-mm.rst > +++ b/Documentation/core-api/boot-time-mm.rst > @@ -76,7 +76,7 @@ These interfaces available only with bootmem, i.e when ``CONFIG_NO_BOOTMEM=n`` > > .. kernel-doc:: include/linux/bootmem.h > .. kernel-doc:: mm/bootmem.c > - :nodocs: > + :functions: > > Memblock specific API > --------------------- > @@ -89,4 +89,4 @@ really happens under the hood. > > .. kernel-doc:: include/linux/memblock.h > .. kernel-doc:: mm/memblock.c > - :nodocs: > + :functions: > -- ~Randy