From patchwork Wed Jun 24 21:40:46 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thadeu Lima de Souza Cascardo X-Patchwork-Id: 29145 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 5A07DB70A4 for ; Thu, 25 Jun 2009 07:54:03 +1000 (EST) Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1MJaMl-0004Ky-AA; Wed, 24 Jun 2009 21:50:51 +0000 Received: from liberdade.minaslivre.org ([72.232.18.203]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1MJaMZ-0004Kc-4N for linux-mtd@lists.infradead.org; Wed, 24 Jun 2009 21:50:48 +0000 Received: from vespa.holoscopio.com (unknown [201.7.142.10]) by liberdade.minaslivre.org (Postfix) with ESMTPSA id 22D8D198189; Wed, 24 Jun 2009 18:58:11 -0300 (BRT) Received: by vespa.holoscopio.com (Postfix, from userid 1000) id 7DA03C57F; Wed, 24 Jun 2009 18:40:47 -0300 (BRT) From: Thadeu Lima de Souza Cascardo To: linux-kernel@vger.kernel.org Subject: [PATCH 2/2] Fix typo s/parititions/partitions/ Date: Wed, 24 Jun 2009 18:40:46 -0300 Message-Id: <1245879646-10338-1-git-send-email-cascardo@holoscopio.com> X-Mailer: git-send-email 1.6.3 X-Spam-Score: 0.4 (/) X-Spam-Report: SpamAssassin version 3.2.5 on bombadil.infradead.org summary: Content analysis details: (0.4 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.4 SUBJECT_FUZZY_TION Attempt to obfuscate words in Subject: Cc: Thadeu Lima de Souza Cascardo , linux-mtd@lists.infradead.org, dwmw2@infradead.org, linux@maxim.org.za, linux-arm-kernel@lists.arm.linux.org.uk 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: , MIME-Version: 1.0 Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Signed-off-by: Thadeu Lima de Souza Cascardo --- drivers/mtd/nand/atmel_nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 2802992..20c828b 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -534,7 +534,7 @@ static int __init atmel_nand_probe(struct platform_device *pdev) &num_partitions); if ((!partitions) || (num_partitions == 0)) { - printk(KERN_ERR "atmel_nand: No parititions defined, or unsupported device.\n"); + printk(KERN_ERR "atmel_nand: No partitions defined, or unsupported device.\n"); res = ENXIO; goto err_no_partitions; }