From patchwork Fri Sep 23 15:36:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mikhail Kshevetskiy X-Patchwork-Id: 116110 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 04068B6F82 for ; Sat, 24 Sep 2011 01:36:54 +1000 (EST) Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1R77nn-0000SR-5u; Fri, 23 Sep 2011 15:36:35 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1R77nk-0002P6-KL; Fri, 23 Sep 2011 15:36:32 +0000 Received: from mail-ey0-f177.google.com ([209.85.215.177]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1R77nh-0002Ol-7W for linux-mtd@lists.infradead.org; Fri, 23 Sep 2011 15:36:30 +0000 Received: by eyd9 with SMTP id 9so2821727eyd.36 for ; Fri, 23 Sep 2011 08:36:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=vDMElth2YjFLRk2CUH2lZRuieRdXktPUP5F8M+FoJAM=; b=Y+jrSknNaEjypSEA1UXXdaxkrtYMu3apb48S7Y1LCoXssvaS/nMb9SWEWs86k0rPQr OByyPjoFgzO786J8bP8LavUiNLsDdQZxTxhiE+h4wmAuI9Y3JRTo4+HuM0UgesJ38nX7 RWUh802/wENWYmdVc8oxClB+i4vFCbxEra1GU= Received: by 10.14.41.155 with SMTP id h27mr1217199eeb.139.1316792185985; Fri, 23 Sep 2011 08:36:25 -0700 (PDT) Received: from laska.campus-ws.pu.ru ([217.197.6.24]) by mx.google.com with ESMTPS id x45sm34272968eeh.11.2011.09.23.08.36.24 (version=SSLv3 cipher=OTHER); Fri, 23 Sep 2011 08:36:25 -0700 (PDT) From: Mikhail Kshevetskiy To: linux-mtd@lists.infradead.org Subject: [PATCH] mtd/devices/m25p80: add support for at25df321a spi data flash Date: Fri, 23 Sep 2011 19:36:18 +0400 Message-Id: <1316792178-5592-1-git-send-email-mikhail.kshevetskiy@gmail.com> X-Mailer: git-send-email 1.7.5.4 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110923_113629_479315_38CA07AA X-CRM114-Status: UNSURE ( 9.81 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -0.8 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (mikhail.kshevetskiy[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.215.177 listed in list.dnswl.org] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.0 T_TO_NO_BRKTS_FREEMAIL To: misformatted and free email service Cc: dwmw2@infradead.org, linux-kernel@vger.kernel.org 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 Signed-off-by: Mikhail Kshevetskiy --- drivers/mtd/devices/m25p80.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 35180e4..12cfce7 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -661,6 +661,7 @@ static const struct spi_device_id m25p_ids[] = { { "at25fs040", INFO(0x1f6604, 0, 64 * 1024, 8, SECT_4K) }, { "at25df041a", INFO(0x1f4401, 0, 64 * 1024, 8, SECT_4K) }, + { "at25df321a", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K) }, { "at25df641", INFO(0x1f4800, 0, 64 * 1024, 128, SECT_4K) }, { "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K) },