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=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, 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 59BF7C3F2D7 for ; Mon, 2 Mar 2020 22:40:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2CB0C20848 for ; Mon, 2 Mar 2020 22:40:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726947AbgCBWkM (ORCPT ); Mon, 2 Mar 2020 17:40:12 -0500 Received: from ms.lwn.net ([45.79.88.28]:59698 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726773AbgCBWkK (ORCPT ); Mon, 2 Mar 2020 17:40:10 -0500 Received: from meer.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id 7D4809B1; Mon, 2 Mar 2020 22:40:09 +0000 (UTC) From: Jonathan Corbet To: linux-kernel@vger.kernel.org Cc: Kees Cook , Masahiro Yamada , Michal Marek , linux-doc@vger.kernel.org, Jonathan Corbet Subject: [PATCH 3/3] docs: move core-api/ioctl.rst to driver-api/ Date: Mon, 2 Mar 2020 15:39:57 -0700 Message-Id: <20200302223957.905473-4-corbet@lwn.net> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200302223957.905473-1-corbet@lwn.net> References: <20200302223957.905473-1-corbet@lwn.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-doc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org The ioctl() documentation belongs with the rest of the driver-oriented info, so move it there. Signed-off-by: Jonathan Corbet --- Documentation/core-api/index.rst | 1 - Documentation/driver-api/index.rst | 1 + Documentation/{core-api => driver-api}/ioctl.rst | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename Documentation/{core-api => driver-api}/ioctl.rst (100%) diff --git a/Documentation/core-api/index.rst b/Documentation/core-api/index.rst index 9836a0ac09a3..0897ad12c119 100644 --- a/Documentation/core-api/index.rst +++ b/Documentation/core-api/index.rst @@ -102,7 +102,6 @@ Documents that don't fit elsewhere or which have yet to be categorized. :maxdepth: 1 librs - ioctl .. only:: subproject and html diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/index.rst index ea3003b3c5e5..1d8c5599149b 100644 --- a/Documentation/driver-api/index.rst +++ b/Documentation/driver-api/index.rst @@ -17,6 +17,7 @@ available subsections can be seen below. driver-model/index basics infrastructure + ioctl early-userspace/index pm/index clk diff --git a/Documentation/core-api/ioctl.rst b/Documentation/driver-api/ioctl.rst similarity index 100% rename from Documentation/core-api/ioctl.rst rename to Documentation/driver-api/ioctl.rst -- 2.24.1