From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 507DAC00306 for ; Thu, 5 Sep 2019 19:58:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9EB7920692 for ; Thu, 5 Sep 2019 19:58:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567713490; bh=eGJBkaPf3i/03H75Ui1ZA3fc5FWUK4xk+D6etZpFnr0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ymD3brummYytlv5q/BtIcfMK+LVyQcXGxVmIxtq52gf9NDKN8QLpaAI/eIoCsRkxq CqulkJV8cdbogzKJuFQdaVjWlgRiwbZLJk3oK3BSHOxHh8z5ZVX6CYrmpmnE+H5Yuy gszSIWW/N1QA07uJZ4zZfd07kHnBoThGLEsMueHU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391585AbfIET56 (ORCPT ); Thu, 5 Sep 2019 15:57:58 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:58448 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388288AbfIET56 (ORCPT ); Thu, 5 Sep 2019 15:57:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=Gd5Si23CQTkjXHrd1kfDMwHId0XN7lelZ5t8iFh3FtY=; b=BrtD79bFD5K3xtPjdEaW3pbgwz gcZgG8ITxBxpgcjmB/Y3/Kyg5p59py1ioeRWv9FJS0ZHvNUFdVAnipHLDDqvVPEkuxWqda/y38XvD 1NkoueT79wVL4hjNE3RV4zL8do/GSBWYoKVOIV5QtR5Q51hGLQt2H5/qbfbSR5mo60n+zx945n8Gm rYmViAH2APBfgLqGkwkkR6PqpUob4q4KESNWy/4c4XGGC8F7PeGZGPIH5pav/ySV1a9qsEDcpzXf5 J2WKY8+EXWFDTLHjjOqg/JRstUiusjYyDw4wwOzywWF0WOji5Odi5MTtOpWHl0pLP1SPGccDFVB4B qajF/gGA==; Received: from [177.159.253.249] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.92 #3 (Red Hat Linux)) id 1i5xtF-0000IB-7r; Thu, 05 Sep 2019 19:57:57 +0000 Received: from mchehab by bombadil.infradead.org with local (Exim 4.92.1) (envelope-from ) id 1i5xtC-0005m4-Kz; Thu, 05 Sep 2019 16:57:54 -0300 From: Mauro Carvalho Chehab To: Linux Media Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , Greg Kroah-Hartman , Joe Perches , linux-kernel@vger.kernel.org, Jonathan Corbet , linux-doc@vger.kernel.org Subject: [PATCH 1/6] docs: sphinx: add SPDX header for some sphinx extensions Date: Thu, 5 Sep 2019 16:57:48 -0300 Message-Id: X-Mailer: git-send-email 2.21.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Those extensions are released under GPLv2, as stated at the :license: markup tag. Add the corresponding SPDX tags for such license. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx/kernel_include.py | 1 + Documentation/sphinx/rstFlatTable.py | 1 + 2 files changed, 2 insertions(+) diff --git a/Documentation/sphinx/kernel_include.py b/Documentation/sphinx/kernel_include.py index f523aa68a36b..7aaea4e31f78 100755 --- a/Documentation/sphinx/kernel_include.py +++ b/Documentation/sphinx/kernel_include.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8; mode: python -*- +# SPDX-License-Identifier: GPL-2.0 # pylint: disable=R0903, C0330, R0914, R0912, E0401 u""" diff --git a/Documentation/sphinx/rstFlatTable.py b/Documentation/sphinx/rstFlatTable.py index 2019a55f6b18..15769d01831b 100755 --- a/Documentation/sphinx/rstFlatTable.py +++ b/Documentation/sphinx/rstFlatTable.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8; mode: python -*- +# SPDX-License-Identifier: GPL-2.0 # pylint: disable=C0330, R0903, R0912 u""" -- 2.21.0