From patchwork Thu May 31 15:38:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Fuga X-Patchwork-Id: 162179 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 6981DB6FAC for ; Fri, 1 Jun 2012 01:40:45 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sa7Sx-0000j7-3h; Thu, 31 May 2012 15:39:11 +0000 Received: from oproxy5.bluehost.com ([2605:dc00:100:2::a5] helo=oproxy5-pub.bluehost.com) by merlin.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sa7Su-0000it-7T for linux-mtd@lists.infradead.org; Thu, 31 May 2012 15:39:09 +0000 Received: (qmail 19522 invoked by uid 0); 31 May 2012 15:39:00 -0000 Received: from unknown (HELO box484.bluehost.com) (66.147.242.84) by cpoproxy2.bluehost.com with SMTP; 31 May 2012 15:39:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=studiofuga.com; s=default; h=Message-Id:Date:Subject:Cc:To:From; bh=kR3Des8xn5QD7Oi5Qo4GbbkeXnbG9BI5Ofn+SHFpkLw=; b=hNtCwBxZ6hs/1vIGiaR9T4tHx54dsGX8s9OW3I7H56dIACFnlxgA/CNnMPG/VDEuiJs0Sa899Wb5rqvbsQ/Nck1rDJKNe4IY4mK73T6Fxd/GIsmo/qmLFy3RF8nVS8DT; Received: from [95.241.194.105] (port=46699 helo=localhost) by box484.bluehost.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1Sa7Si-0007UA-Kl; Thu, 31 May 2012 09:38:57 -0600 From: "ing. Federico Fuga" To: Subject: [PATCH] MTD: add JEDEC ID for w25q32wd to chip table Date: Thu, 31 May 2012 17:38:52 +0200 Message-Id: <1338478732-31992-1-git-send-email-fuga@studiofuga.com> X-Mailer: git-send-email 1.7.9.5 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..93ea3c1 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) }, + { "w25q32wd", 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) },