From patchwork Thu Dec 17 20:31:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrey Yurovsky X-Patchwork-Id: 41346 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 ozlabs.org (Postfix) with ESMTPS id 57B18B6F09 for ; Fri, 18 Dec 2009 07:34:03 +1100 (EST) Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1NLN0q-0005im-5v; Thu, 17 Dec 2009 20:31:52 +0000 Received: from mail-yx0-f202.google.com ([209.85.210.202]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1NLN0j-0005d5-Hf for linux-mtd@lists.infradead.org; Thu, 17 Dec 2009 20:31:49 +0000 Received: by yxe40 with SMTP id 40so2429355yxe.28 for ; Thu, 17 Dec 2009 12:31:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=yB2KUPZ8YKi6P0kgZFqoIFutCIxBTSfIJMDTMCy9hxc=; b=CcFcm7NtALWx0aQgEn0bZoHhLQgEwURrsyN88FHU0qkMz1MF24r8WbGFOuNkh+XYR+ Ug5QKNjv+a4Ga3wWIMqJmE2Lv7BhGTpXGqXKBFbrvTf/7ZE0YjdwpipN8/YN5VN3eB/5 gxO5lHJydI+qk3atpL62ip+GqjJPOuCBW2KEc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=CHAdDhhrVXE043+q4D6In7D0jIu4kiieNjuCkYOHoVrLiYx/vKV0qotIgQGQzblS0z xpNoh5ouYwXTcBaZ+TQRhylIWJ2FVSXWQY6zQUhUzqr3V4ob8j89CWPPEN3osBb+vXv2 XB4puT2VDm/8W2x09SPs/M3mOR5DoLhzEb+8w= Received: by 10.101.149.28 with SMTP id b28mr4726976ano.85.1261081903785; Thu, 17 Dec 2009 12:31:43 -0800 (PST) Received: from localhost ([63.114.26.15]) by mx.google.com with ESMTPS id 20sm854192yxe.20.2009.12.17.12.31.42 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 17 Dec 2009 12:31:43 -0800 (PST) From: Andrey Yurovsky To: linux-mtd@lists.infradead.org Subject: [PATCH] nandsim: (trivial) fix spelling Date: Thu, 17 Dec 2009 12:31:20 -0800 Message-Id: <1261081880-18183-1-git-send-email-yurovsky@gmail.com> X-Mailer: git-send-email 1.6.3.3 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20091217_153145_623652_DD53BD64 X-CRM114-Status: GOOD ( 10.64 ) X-Spam-Score: 0.0 (/) X-Spam-Report: SpamAssassin version 3.2.5 on bombadil.infradead.org summary: Content analysis details: (0.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- _SUMMARY_ Cc: Andrey Yurovsky X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.12 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 From: Andrey Yurovsky s/nanodeconds/nanoseconds Signed-off-by: Andrey Yurovsky Acked-by: Artem Bityutskiy --- drivers/mtd/nand/nandsim.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c index 7281000..3cf9180 100644 --- a/drivers/mtd/nand/nandsim.c +++ b/drivers/mtd/nand/nandsim.c @@ -135,8 +135,8 @@ MODULE_PARM_DESC(fourth_id_byte, "The fourth byte returned by NAND Flash 'read I MODULE_PARM_DESC(access_delay, "Initial page access delay (microseconds)"); MODULE_PARM_DESC(programm_delay, "Page programm delay (microseconds"); MODULE_PARM_DESC(erase_delay, "Sector erase delay (milliseconds)"); -MODULE_PARM_DESC(output_cycle, "Word output (from flash) time (nanodeconds)"); -MODULE_PARM_DESC(input_cycle, "Word input (to flash) time (nanodeconds)"); +MODULE_PARM_DESC(output_cycle, "Word output (from flash) time (nanoseconds)"); +MODULE_PARM_DESC(input_cycle, "Word input (to flash) time (nanoseconds)"); MODULE_PARM_DESC(bus_width, "Chip's bus width (8- or 16-bit)"); MODULE_PARM_DESC(do_delays, "Simulate NAND delays using busy-waits if not zero"); MODULE_PARM_DESC(log, "Perform logging if not zero");