From: Peter Lister <peter@xxxxxxxxxxxxxxxxxxxxxxxx> This removes the following warnings from the kernel doc build... ./drivers/base/platform.c:134: WARNING: Unexpected indentation. ./drivers/base/platform.c:213: WARNING: Unexpected indentation. Signed-off-by: Peter Lister <peter@xxxxxxxxxxxxxxxxxxxxxxxx> --- drivers/base/platform.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 7fa654f1288b..7fb5cf847253 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -128,7 +128,8 @@ EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource_byname); * request_irq() APIs. This is the same as platform_get_irq(), except that it * does not print an error message if an IRQ can not be obtained. * - * Example: + * Example: :: + * * int irq = platform_get_irq_optional(pdev, 0); * if (irq < 0) * return irq; @@ -207,7 +208,8 @@ EXPORT_SYMBOL_GPL(platform_get_irq_optional); * IRQ fails. Device drivers should check the return value for errors so as to * not pass a negative integer value to the request_irq() APIs. * - * Example: + * Example: :: + * * int irq = platform_get_irq(pdev, 0); * if (irq < 0) * return irq; -- 2.24.1