From patchwork Thu Feb 23 00:34:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 731348 X-Patchwork-Delegate: dwmw2@infradead.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vTFcb1D1Zz9s73 for ; Thu, 23 Feb 2017 11:34:55 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="RcbJ+/kv"; dkim-atps=neutral DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=c04LLCu1QFzFcWvW0Qsk9HGlOl4CVtAwYn//gTUQ0Ig=; b=RcbJ+/kvugGhMv Sq1DWsuvalKP//Q3HRlCzIGimgX13GVuNFZD7gNZn15IrXSAs5TNtP4vvCfQlMgsxoc5LDzSOL2YM QEvtiF66QBz7hryQq4l6qvyKYraqZpENTGl6DtlIxglVtzkZNfDD3uGYTWkOFHZJrCmXbnTn+gUVi UjI42lijQ6TIEZJQmAAZmJCx+meeWey3OZmZ8ZgFsXFUS3BtCgUVke6yzJsojfwvZFEPjZJe8TSDm /sjpt1OWbhoq493ObChZFbydW3rgJlyDIZi3PaR2uNMBFHTV3k8q3Oq8QyB9zjB60+ZV77U+Fj/B7 sNr9b588aPy9Vmz/aV7w==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1cghMt-0001M6-Eb; Thu, 23 Feb 2017 00:34:47 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1cghMU-0001LM-Fu for linux-mtd@lists.infradead.org; Thu, 23 Feb 2017 00:34:24 +0000 Received: from cpc104592-craw8-2-0-cust106.16-3.cable.virginm.net ([82.33.165.107] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1cghM8-000718-CA; Thu, 23 Feb 2017 00:34:00 +0000 From: Colin King To: David Woodhouse , linux-mtd@lists.infradead.org Subject: [PATCH] jffs2: fix spelling mistake: "requestied" -> "requested" Date: Thu, 23 Feb 2017 00:34:00 +0000 Message-Id: <20170223003400.9617-1-colin.king@canonical.com> X-Mailer: git-send-email 2.10.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20170222_163422_674429_9A6E95E7 X-CRM114-Status: UNSURE ( 7.87 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -4.2 (----) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-4.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [91.189.89.112 listed in list.dnswl.org] -0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-kernel@vger.kernel.org Sender: "linux-mtd" Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Colin Ian King trivial fix to spelling mistake in JFFS2_ERROR message Signed-off-by: Colin Ian King --- fs/jffs2/readinode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/jffs2/readinode.c b/fs/jffs2/readinode.c index 06a71db..40f3fd4 100644 --- a/fs/jffs2/readinode.c +++ b/fs/jffs2/readinode.c @@ -1366,7 +1366,7 @@ int jffs2_do_read_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, jffs2_add_ino_cache(c, f->inocache); } if (!f->inocache) { - JFFS2_ERROR("requestied to read an nonexistent ino %u\n", ino); + JFFS2_ERROR("requested to read an nonexistent ino %u\n", ino); return -ENOENT; }