From patchwork Tue Jun 5 15:37:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Fuga X-Patchwork-Id: 163098 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2DE46B6EF1 for ; Wed, 6 Jun 2012 01:38:46 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sbvor-0005gz-Lb; Tue, 05 Jun 2012 15:37:17 +0000 Received: from oproxy1.bluehost.com ([2605:dc00:100:2::a1] helo=oproxy1-pub.bluehost.com) by merlin.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sbvoo-0005gl-0r for linux-mtd@lists.infradead.org; Tue, 05 Jun 2012 15:37:15 +0000 Received: (qmail 24910 invoked by uid 0); 5 Jun 2012 15:37:09 -0000 Received: from unknown (HELO box484.bluehost.com) (66.147.242.84) by oproxy1.bluehost.com with SMTP; 5 Jun 2012 15:37:09 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=studiofuga.com; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=o65GVepogOvPz+9dPZS3FUfisNeyFxwt7Tl+j4MhNeM=; b=lsgzKYOVGA4/659Tu/sAe9kaGQKHct30E0n3CR7lxF0AFIGoMEeUlc5PFCG0r2SMODQ4op+euqosFf3N8eJndnpxFuWrYAfgAoJOgrFGp/BgyfPWz0ltyngrTYfP7ZaL; Received: from [95.241.194.105] (port=34444 helo=localhost) by box484.bluehost.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1Sbvog-0004BI-72; Tue, 05 Jun 2012 09:37:06 -0600 From: Federico Fuga To: Subject: [PATCH] MTD: add JEDEC ID for w25q32dw to chip table Date: Tue, 5 Jun 2012 17:37:01 +0200 Message-Id: <1338910621-3843-1-git-send-email-fuga@studiofuga.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1338900917.2507.50.camel@sauron.fi.intel.com> References: <1338900917.2507.50.camel@sauron.fi.intel.com> X-Identified-User: {2354:box484.bluehost.com:happycac:studiofuga.com} {sentby:smtp auth 95.241.194.105 authed with fuga+studiofuga.com} X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.8 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid 0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid Cc: fuga@studiofuga.com, linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.14 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: "ing. Federico Fuga" Adds JEDEC ID for the 1.8V version of WinBond w25q32 Signed-off-by: Federico Fuga --- drivers/mtd/devices/m25p80.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 7c60ddd..9d16890 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -757,6 +757,7 @@ static const struct spi_device_id m25p_ids[] = { { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32, SECT_4K) }, { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64, SECT_4K) }, { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64, SECT_4K) }, + { "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64, SECT_4K) }, { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K) }, { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },