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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C67BFC28D13 for ; Thu, 25 Aug 2022 12:12:19 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0FA5A84821; Thu, 25 Aug 2022 14:12:17 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=pm.me Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; secure) header.d=pm.me header.i=@pm.me header.b="cxREcJB0"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4880E8483E; Thu, 25 Aug 2022 14:12:15 +0200 (CEST) Received: from mail-4316.protonmail.ch (mail-4316.protonmail.ch [185.70.43.16]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id D5916845C8 for ; Thu, 25 Aug 2022 14:12:12 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=pm.me Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=rknecht@pm.me Date: Thu, 25 Aug 2022 12:12:01 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pm.me; s=protonmail3; t=1661429532; x=1661688732; bh=+f5/ci5oDLmfmn3Hu437v1WDJokdlOamy4E5+UQILbU=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=cxREcJB0Kdmpp0QGJdSlxc2rfSTO1jmGEAk1d2WzhF8Ii5xsvwMwsPbvrWqiJgiv0 6GwGJDWfWGMx/5cI4XrG0cCiJ2VHopJMokn+8T7NukgkTSB44U1whbUZxhbekSfcab zaXCq//cavs06j0vcDNNgO9ko/TseX3xA0xLqp/OhZ1JmNHwJRoSimcWg2d6xxuQ6z 9X/2mZTL/zWKv61e9TUxY9MDRP3zsBSuQEn1AMGuiGcnhTi6sE4DWWL8kdfBtBCWad pSWeCR+v9ypX3l5dSq8O5mqRgEK36sFejW7BWpfCnl5fXCra6RTjl4YCqI/Ajf6TlL D4GHqtL2RFyEA== To: u-boot@lists.denx.de From: Roger Knecht Cc: Tom Rini , Simon Glass , Roger Knecht Subject: [PATCH v2] fs: fix comment typo Message-ID: <20220825121139.291-1-rknecht@pm.me> Feedback-ID: 8957232:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Roger Knecht Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean Fix typo in include/fs.h Reviewed-by: Simon Glass Signed-off-by: Roger Knecht --- v2: - Added Reviewed-by Simon include/fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fs.h b/include/fs.h index 2195dc172e..8370d88cb2 100644 --- a/include/fs.h +++ b/include/fs.h @@ -46,7 +46,7 @@ int do_fat_fsload(struct cmd_tbl *cmdtp, int flag, int ar= gc, int do_ext2load(struct cmd_tbl *cmdtp, int flag, int argc, char *const arg= v[]); /* - * Tell the fs layer which block device an partition to use for future + * Tell the fs layer which block device and partition to use for future * commands. This also internally identifies the filesystem that is presen= t * within the partition. The identification process may be limited to a * specific filesystem type by passing FS_* in the fstype parameter. -- 2.25.1