Re: [PATCH v3 1/1] A compact idiom to add code examples in kerneldoc comments.
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2020-03-27 06:32:37
Also in:
lkml
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2020-03-27 06:32:37
Also in:
lkml
On Thu, Mar 26, 2020 at 07:51:56PM +0000, peter@bikeshed.quignogs.org.uk wrote:
From: Peter Lister <redacted> scripts/kernel-doc - When a double colon follows a section heading (e.g. Example::), write a double colon line to the ReST output to make the following text (e.g. a code snippet) into a literal block. drivers/base/platform.c - Changed Example: headings to Example:: to literalise code snippets as above. This patch also removes two kerneldoc build warnings: ./drivers/base/platform.c:134: WARNING: Unexpected indentation. ./drivers/base/platform.c:213: WARNING: Unexpected indentation. Signed-off-by: Peter Lister <redacted> --- drivers/base/platform.c | 4 ++-- scripts/kernel-doc | 19 +++++++++++++++---- 2 files changed, 17 insertions(+), 6 deletions(-)
For the driver/base/platform.c change: Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>