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,USER_AGENT_GIT autolearn=ham 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 7D8C1C3F2D5 for ; Mon, 2 Mar 2020 07:38:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4AC7C246A1 for ; Mon, 2 Mar 2020 07:38:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583134716; bh=a/vrBYd7w6ekMDJXY8HBC89VID4NrdXsxymJhV+Pacc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=atYpwbcEOAIhLj27TVac9Ny6fxkN9Z/S2AwlOQSUrCz4rZVXQ8zokBAbzKMFMWXrE KZUHcmLnJGlcxlztI78jDwZ6ueDovhhq0fpVGZN1kJuwSZa+oKD5nCbuhXSc1BzYS0 3X1z8gL7jqxfp5ErX87+kOsBpLOH0aSmhV9gPS/Y= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727107AbgCBHiS (ORCPT ); Mon, 2 Mar 2020 02:38:18 -0500 Received: from mail.kernel.org ([198.145.29.99]:44664 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725446AbgCBHiP (ORCPT ); Mon, 2 Mar 2020 02:38:15 -0500 Received: from mail.kernel.org (ip5f5ad4e9.dynamic.kabel-deutschland.de [95.90.212.233]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7074E246C0; Mon, 2 Mar 2020 07:38:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583134694; bh=a/vrBYd7w6ekMDJXY8HBC89VID4NrdXsxymJhV+Pacc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FO3S9MtwtprGxwtfYF0T9XHSfvQ2CEBWw2I7SAW5rW7sfRwzNuZ9bkRrUIQb/s+at UfOpybeCtJhC2VwH11w3x+eDt6iGOGyPV5khAJFvf2DHV+ndt3L48/OD80k34gspl2 2j7z7l+i6hzLEYqLfAibCJcKzwHp1DNNTNJ6i/hs= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1j8feV-0003VR-Pg; Mon, 02 Mar 2020 08:38:11 +0100 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Rob Herring , devicetree@vger.kernel.org, Mauro Carvalho Chehab Subject: [PATCH 01/12] docs: dt: add an index.rst file for devicetree Date: Mon, 2 Mar 2020 08:37:56 +0100 Message-Id: <535a508f48d223b4e9632117e96db18265ab6c7b.1583134242.git.mchehab+samsung@kernel.org> X-Mailer: git-send-email 2.21.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Mauro Carvalho Chehab There are some device tree documentation under Documentation/devicetree. Add a top index file for it and add the already-existing ReST file on it. Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Mauro Carvalho Chehab --- Documentation/devicetree/index.rst | 10 ++++++++++ Documentation/index.rst | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 Documentation/devicetree/index.rst diff --git a/Documentation/devicetree/index.rst b/Documentation/devicetree/index.rst new file mode 100644 index 000000000000..a11efe26f205 --- /dev/null +++ b/Documentation/devicetree/index.rst @@ -0,0 +1,10 @@ +.. SPDX-License-Identifier: GPL-2.0 + +============================= +Open Firmware and Device Tree +============================= + +.. toctree:: + :maxdepth: 1 + + writing-schema diff --git a/Documentation/index.rst b/Documentation/index.rst index e99d0bd2589d..b63d117aea15 100644 --- a/Documentation/index.rst +++ b/Documentation/index.rst @@ -1,3 +1,5 @@ +.. SPDX-License-Identifier: GPL-2.0 + .. The Linux Kernel documentation master file, created by sphinx-quickstart on Fri Feb 12 13:51:46 2016. @@ -46,6 +48,7 @@ platform firmwares. :maxdepth: 2 firmware-guide/index + devicetree/index Application-developer documentation ----------------------------------- -- 2.21.1