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 4BBA4C47257 for ; Fri, 1 May 2020 15:38:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2326E24959 for ; Fri, 1 May 2020 15:38:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1588347529; bh=1Q9DqDJemHqm7/huajZj2zzTTSmciVYiZ33hawipH4M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=vZUWB+99ok0qWlcU+dUK1pKMk7hJZwHu4M0F8rBguqLa19OS9sCxgz6bIrPBmNbM/ f26KpIzcZPdkJNA8dnYCAXN9FBEoFNwkgVdQ1uOe8YNJ69w2No50mU0gZDFDoCS+dD 0I4egzOG9FnmUVP7tyMd0sESCnw6rEY+7SgF/BV4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729836AbgEAPis (ORCPT ); Fri, 1 May 2020 11:38:48 -0400 Received: from mail.kernel.org ([198.145.29.99]:52214 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729380AbgEAPiD (ORCPT ); Fri, 1 May 2020 11:38:03 -0400 Received: from mail.kernel.org (ip5f5ad5c5.dynamic.kabel-deutschland.de [95.90.213.197]) (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 C963C2495A; Fri, 1 May 2020 15:38:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1588347483; bh=1Q9DqDJemHqm7/huajZj2zzTTSmciVYiZ33hawipH4M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UrQcrs+KRb/pwilyr6Z8dYk68ialiWEKfhEBT/Q7MHCl3Shq6O/OJCWbdOReDjwlD 8LxwqL8nGM9GDJ4h3klNHpuPOJq6OzXexXAxmgu+BZ4mtxf5br+qw8eAzji+04xk4k uT3QcaHwIjImj+yF8hKoOsBD8d3+ntSuqujnTgFg= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1jUXjl-00FE4e-20; Fri, 01 May 2020 17:38:01 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Corey Minyard , =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= , Pragat Pandya , Jason Gunthorpe , Harald Seiler , openipmi-developer@lists.sourceforge.net Subject: [PATCH 04/14] docs: move IPMI.txt to the driver API book Date: Fri, 1 May 2020 17:37:48 +0200 Message-Id: X-Mailer: git-send-email 2.25.4 In-Reply-To: References: 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 IPMI is under drivers/char. This doc describes the kAPI part of the IPMI (mainly). So, move it to the driver-api directory and add it to the corresponding index.rst file. Signed-off-by: Mauro Carvalho Chehab --- Documentation/driver-api/index.rst | 1 + Documentation/{IPMI.txt => driver-api/ipmi.rst} | 0 2 files changed, 1 insertion(+) rename Documentation/{IPMI.txt => driver-api/ipmi.rst} (100%) diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/index.rst index dcc47c029f8e..6567187e7687 100644 --- a/Documentation/driver-api/index.rst +++ b/Documentation/driver-api/index.rst @@ -39,6 +39,7 @@ available subsections can be seen below. spi i2c ipmb + ipmi i3c/index interconnect devfreq diff --git a/Documentation/IPMI.txt b/Documentation/driver-api/ipmi.rst similarity index 100% rename from Documentation/IPMI.txt rename to Documentation/driver-api/ipmi.rst -- 2.25.4