From patchwork Sun Mar 8 08:08:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ard Biesheuvel X-Patchwork-Id: 206479 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 02860C3F2D1 for ; Sun, 8 Mar 2020 08:09:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CF82D21741 for ; Sun, 8 Mar 2020 08:09:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583654976; bh=v/U4OkqxqRWTdenDwIzfbVlCTaQKqrUR3iIvfWvw9xw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=q8yt3uBdFB7L/rnfzOoifPhaOCy0hhbMSWH6RbsgAPu2wEy0qUQ1qs+XCv7vJKpUl IM9FJDHN18+CemIhR4TgBVjCbK8MHtGgrkCEo9BaBIbP7UtFK2JjjKOFrVJH0+bcQb 5f7gAMjbpw1Ji/Br8/6XbVhUuO8wXHnSeqe7G9kk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726461AbgCHIJg (ORCPT ); Sun, 8 Mar 2020 04:09:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:36850 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726437AbgCHIJf (ORCPT ); Sun, 8 Mar 2020 04:09:35 -0400 Received: from e123331-lin.home (amontpellier-657-1-18-247.w109-210.abo.wanadoo.fr [109.210.65.247]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7E1E220866; Sun, 8 Mar 2020 08:09:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583654974; bh=v/U4OkqxqRWTdenDwIzfbVlCTaQKqrUR3iIvfWvw9xw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ILIPEOPW/3A2F7Xa/1PxE9iA76qsSGdayrtwU0wqAypZfJjT5zjayK/yp93AHoLWX okoYKGdlxprle4Fxm384zWqydDptxOjSvwGsc1OgHLVUywY6zK0Y+yXo2fZCKDzkEK cH4j1vtBwnUg11V9+DbHNDjWrg/KP+mYorE7Mj5s= From: Ard Biesheuvel To: linux-efi@vger.kernel.org, Ingo Molnar , Thomas Gleixner Cc: Ard Biesheuvel , linux-kernel@vger.kernel.org, Arvind Sankar , Christoph Hellwig , David Hildenbrand , Davidlohr Bueso , Guenter Roeck , Heinrich Schuchardt , Jonathan Corbet , Lukas Bulwahn , Masahiro Yamada , Nikolai Merinov , Tom Lendacky , Vladis Dronov Subject: [PATCH 08/28] efi/libstub: add libstub/mem.c to documentation tree Date: Sun, 8 Mar 2020 09:08:39 +0100 Message-Id: <20200308080859.21568-9-ardb@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200308080859.21568-1-ardb@kernel.org> References: <20200308080859.21568-1-ardb@kernel.org> MIME-Version: 1.0 Sender: linux-efi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-efi@vger.kernel.org From: Heinrich Schuchardt Let the description of the efi/libstub/mem.c functions appear in the Kernel API documentation in chapter The Linux driver implementer’s API guide Linux Firmware API UEFI Support UEFI stub library functions Signed-off-by: Heinrich Schuchardt Acked-by: Jonathan Corbet Link: https://lore.kernel.org/r/20200221035832.144960-1-xypron.glpk@gmx.de Signed-off-by: Ard Biesheuvel --- Documentation/driver-api/firmware/efi/index.rst | 11 +++++++++++ Documentation/driver-api/firmware/index.rst | 1 + 2 files changed, 12 insertions(+) create mode 100644 Documentation/driver-api/firmware/efi/index.rst diff --git a/Documentation/driver-api/firmware/efi/index.rst b/Documentation/driver-api/firmware/efi/index.rst new file mode 100644 index 000000000000..4fe8abba9fc6 --- /dev/null +++ b/Documentation/driver-api/firmware/efi/index.rst @@ -0,0 +1,11 @@ +.. SPDX-License-Identifier: GPL-2.0 + +============ +UEFI Support +============ + +UEFI stub library functions +=========================== + +.. kernel-doc:: drivers/firmware/efi/libstub/mem.c + :internal: diff --git a/Documentation/driver-api/firmware/index.rst b/Documentation/driver-api/firmware/index.rst index 29da39ec4b8a..57415d657173 100644 --- a/Documentation/driver-api/firmware/index.rst +++ b/Documentation/driver-api/firmware/index.rst @@ -6,6 +6,7 @@ Linux Firmware API introduction core + efi/index request_firmware other_interfaces