mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* linux-next: build warning after merge of the spdx tree
@ 2022-06-14  6:45 Stephen Rothwell
  2022-06-14  8:46 ` [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive Bagas Sanjaya
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2022-06-14  6:45 UTC (permalink / raw)
  To: Greg KH
  Cc: Thomas Gleixner, Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 381 bytes --]

Hi all,

After merging the spdx tree, today's linux-next build (htmldocs) produced
this warning:

Documentation/arm/samsung-s3c24xx/cpufreq.rst:2: WARNING: Explicit markup ends without a blank line; unexpected unindent.

Introduced by commit

  b7bc1c9e5b04 ("treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_147.RULE")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive
  2022-06-14  6:45 linux-next: build warning after merge of the spdx tree Stephen Rothwell
@ 2022-06-14  8:46 ` Bagas Sanjaya
  2022-06-14  8:49   ` Bagas Sanjaya
  2022-06-27  2:43   ` Bagas Sanjaya
  0 siblings, 2 replies; 6+ messages in thread
From: Bagas Sanjaya @ 2022-06-14  8:46 UTC (permalink / raw)
  To: linux-doc
  Cc: Bagas Sanjaya, Stephen Rothwell, Jonathan Corbet, Allison Randal,
	Greg Kroah-Hartman, Thomas Gleixner, linux-kernel

After merging spdx tree for linux-next testing, Stephen Rothwell reported
htmldocs warning:

Documentation/arm/samsung-s3c24xx/cpufreq.rst:2: WARNING: Explicit markup ends without a blank line; unexpected unindent.

It is due to missing blank line separator between SPDX directive and
page title.

Add the blank line to fix the warning.

Link: https://lore.kernel.org/linux-next/20220614164506.6afd65a6@canb.auug.org.au/
Fixes: b7bc1c9e5b04da ("treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_147.RULE")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Allison Randal <allison@lohutok.net>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
 Documentation/arm/samsung-s3c24xx/cpufreq.rst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/arm/samsung-s3c24xx/cpufreq.rst b/Documentation/arm/samsung-s3c24xx/cpufreq.rst
index ed19ce1a462921..cd22697cf60660 100644
--- a/Documentation/arm/samsung-s3c24xx/cpufreq.rst
+++ b/Documentation/arm/samsung-s3c24xx/cpufreq.rst
@@ -1,4 +1,5 @@
 .. SPDX-License-Identifier: GPL-2.0-only
+
 =======================
 S3C24XX CPUfreq support
 =======================

base-commit: 35d872b9ea5b3ad784d7479ea728dcb688df2db7
-- 
An old man doll... just what I always wanted! - Clara


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive
  2022-06-14  8:46 ` [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive Bagas Sanjaya
@ 2022-06-14  8:49   ` Bagas Sanjaya
  2022-06-27  2:43   ` Bagas Sanjaya
  1 sibling, 0 replies; 6+ messages in thread
From: Bagas Sanjaya @ 2022-06-14  8:49 UTC (permalink / raw)
  To: linux-doc
  Cc: Stephen Rothwell, Jonathan Corbet, Allison Randal,
	Greg Kroah-Hartman, Thomas Gleixner, linux-kernel

On 6/14/22 15:46, Bagas Sanjaya wrote:
> After merging spdx tree for linux-next testing, Stephen Rothwell reported
> htmldocs warning:
> 
> Documentation/arm/samsung-s3c24xx/cpufreq.rst:2: WARNING: Explicit markup ends without a blank line; unexpected unindent.
> 
> It is due to missing blank line separator between SPDX directive and
> page title.
> 
> Add the blank line to fix the warning.
> 
> Link: https://lore.kernel.org/linux-next/20220614164506.6afd65a6@canb.auug.org.au/
> Fixes: b7bc1c9e5b04da ("treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_147.RULE")
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: Allison Randal <allison@lohutok.net>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: linux-kernel@vger.kernel.org
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
> ---

Oops, I forgot to mention that this patch is based on next-20220614.

-- 
An old man doll... just what I always wanted! - Clara

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive
  2022-06-14  8:46 ` [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive Bagas Sanjaya
  2022-06-14  8:49   ` Bagas Sanjaya
@ 2022-06-27  2:43   ` Bagas Sanjaya
  2022-06-27  7:32     ` Greg Kroah-Hartman
  1 sibling, 1 reply; 6+ messages in thread
From: Bagas Sanjaya @ 2022-06-27  2:43 UTC (permalink / raw)
  To: linux-doc
  Cc: Stephen Rothwell, Jonathan Corbet, Allison Randal,
	Greg Kroah-Hartman, Thomas Gleixner, linux-kernel

ping

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive
  2022-06-27  2:43   ` Bagas Sanjaya
@ 2022-06-27  7:32     ` Greg Kroah-Hartman
  2022-06-27  7:44       ` Bagas Sanjaya
  0 siblings, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2022-06-27  7:32 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: linux-doc, Stephen Rothwell, Jonathan Corbet, Allison Randal,
	Thomas Gleixner, linux-kernel

On Mon, Jun 27, 2022 at 09:43:35AM +0700, Bagas Sanjaya wrote:
> ping

I see no context here :(

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive
  2022-06-27  7:32     ` Greg Kroah-Hartman
@ 2022-06-27  7:44       ` Bagas Sanjaya
  0 siblings, 0 replies; 6+ messages in thread
From: Bagas Sanjaya @ 2022-06-27  7:44 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-doc, Stephen Rothwell, Jonathan Corbet, Allison Randal,
	Thomas Gleixner, linux-kernel

On 6/27/22 14:32, Greg Kroah-Hartman wrote:
> On Mon, Jun 27, 2022 at 09:43:35AM +0700, Bagas Sanjaya wrote:
>> ping
> 
> I see no context here :(

OK, will resend the patch.

-- 
An old man doll... just what I always wanted! - Clara

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-06-27  7:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-14  6:45 linux-next: build warning after merge of the spdx tree Stephen Rothwell
2022-06-14  8:46 ` [PATCH] Documentation: samsung-s3c24xx: Add blank line after SPDX directive Bagas Sanjaya
2022-06-14  8:49   ` Bagas Sanjaya
2022-06-27  2:43   ` Bagas Sanjaya
2022-06-27  7:32     ` Greg Kroah-Hartman
2022-06-27  7:44       ` Bagas Sanjaya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®