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 B9A75C18E5F for ; Sun, 8 Mar 2020 08:10:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8CCAB208CD for ; Sun, 8 Mar 2020 08:10:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583655040; bh=VmjVz0cw0oHKZKPj5pJD4LBc61IdV08dBNK5VqEkJog=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Dy97dXfQObzn2Ptou34HSz84aV+ET75sIjVmyFLifhHJvwrErs42q8g2mvCTyYOWo WuOc+Vasgze3SNBzpuB8txPVspMdPUPlpTE8bZ7THtguLzHtBjmpYHm/sjyxMt6Utq qFBN9+txEEYywbyea65O9X3uyR/19fe6Nin57mag= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726383AbgCHIKj (ORCPT ); Sun, 8 Mar 2020 04:10:39 -0400 Received: from mail.kernel.org ([198.145.29.99]:38652 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726347AbgCHIKg (ORCPT ); Sun, 8 Mar 2020 04:10:36 -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 95FCF20838; Sun, 8 Mar 2020 08:10:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583655035; bh=VmjVz0cw0oHKZKPj5pJD4LBc61IdV08dBNK5VqEkJog=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XF9F7kgtVpxBeH8aesqpMcrbxLL9+vG6VdHBCLe67i6C3nA8sWnI1bYqwYGwyAUN7 uoUgVNx8YgXlDx0Cvp8wH5iolIJW3fSZ46W63famskBat5NucQaGyl26PPmaDBS9S9 2cv4jHztwY2EuP9mw/VVckUULp/Mi16DXTl1gbcw= 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 25/28] efi: fix a mistype in comments mentioning efivar_entry_iter_begin() Date: Sun, 8 Mar 2020 09:08:56 +0100 Message-Id: <20200308080859.21568-26-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> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Vladis Dronov Signed-off-by: Vladis Dronov Link: https://lore.kernel.org/r/20200305084041.24053-4-vdronov@redhat.com Signed-off-by: Ard Biesheuvel --- drivers/firmware/efi/efi-pstore.c | 2 +- drivers/firmware/efi/vars.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/firmware/efi/efi-pstore.c b/drivers/firmware/efi/efi-pstore.c index d2f6855d205b..c2f1d4e6630b 100644 --- a/drivers/firmware/efi/efi-pstore.c +++ b/drivers/firmware/efi/efi-pstore.c @@ -161,7 +161,7 @@ static int efi_pstore_scan_sysfs_exit(struct efivar_entry *pos, * * @record: pstore record to pass to callback * - * You MUST call efivar_enter_iter_begin() before this function, and + * You MUST call efivar_entry_iter_begin() before this function, and * efivar_entry_iter_end() afterwards. * */ diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c index 436d1776bc7b..5f2a4d162795 100644 --- a/drivers/firmware/efi/vars.c +++ b/drivers/firmware/efi/vars.c @@ -1071,7 +1071,7 @@ EXPORT_SYMBOL_GPL(efivar_entry_iter_end); * entry on the list. It is safe for @func to remove entries in the * list via efivar_entry_delete(). * - * You MUST call efivar_enter_iter_begin() before this function, and + * You MUST call efivar_entry_iter_begin() before this function, and * efivar_entry_iter_end() afterwards. * * It is possible to begin iteration from an arbitrary entry within -- 2.17.1