From patchwork Mon Jul 6 10:02:08 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Kaehlcke X-Patchwork-Id: 29493 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [18.85.46.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 101B0B6F44 for ; Mon, 6 Jul 2009 20:04:23 +1000 (EST) Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1MNl1j-000738-Dd; Mon, 06 Jul 2009 10:02:23 +0000 Received: from mailbox-us-s-12.mailhostingserver.com ([75.125.101.9]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1MNl1Z-0006Am-Tl for linux-mtd@lists.infradead.org; Mon, 06 Jul 2009 10:02:20 +0000 Received: from d4rwin.no-ip.org (unknown [87.221.4.213]) (Authenticated sender: matthias@kaehlcke.net) by mailbox-us-s-12.mailhostingserver.com (Postfix) with ESMTPA id C282853D0134; Mon, 6 Jul 2009 10:01:54 +0000 (GMT) Received: by d4rwin.no-ip.org (Postfix, from userid 1000) id 404414C8E9; Mon, 6 Jul 2009 12:02:08 +0200 (CEST) Date: Mon, 6 Jul 2009 12:02:08 +0200 From: Matthias Kaehlcke To: dwmw2@infradead.org Subject: [PATCH] mtdblock erase_write(): fix typo in comment Message-ID: <20090706100208.GA26320@darwin> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Spam-Score: 0.0 (/) Cc: linux-mtd@lists.infradead.org X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org mtdblock erase_write(): fix typo in comment Signed-off-by: Matthias Kaehlcke --- drivers/mtd/mtdblock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/mtdblock.c b/drivers/mtd/mtdblock.c index 208c6fa..515d4b0 100644 --- a/drivers/mtd/mtdblock.c +++ b/drivers/mtd/mtdblock.c @@ -82,7 +82,7 @@ static int erase_write (struct mtd_info *mtd, unsigned long pos, remove_wait_queue(&wait_q, &wait); /* - * Next, writhe data to flash. + * Next, write the data to flash. */ ret = mtd->write(mtd, pos, len, &retlen, buf);