From patchwork Tue Dec 9 13:36:12 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthieu CASTET X-Patchwork-Id: 12936 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@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 72DCBDDDD8 for ; Wed, 10 Dec 2008 00:46:29 +1100 (EST) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.68 #1 (Red Hat Linux)) id 1LA2tu-0001Fm-4t; Tue, 09 Dec 2008 13:45:22 +0000 Received: from co203.xi-lite.net ([149.6.83.203]) by bombadil.infradead.org with esmtp (Exim 4.68 #1 (Red Hat Linux)) id 1LA2l6-000815-4M for linux-mtd@lists.infradead.org; Tue, 09 Dec 2008 13:36:16 +0000 Received: from co203.xi-lite.net (localhost.localdomain [127.0.0.1]) by co203.xi-lite.net (Postfix) with ESMTP id 7BB1E6581F2 for ; Tue, 9 Dec 2008 13:36:13 +0000 (GMT) Received: by co203.xi-lite.net (Postfix, from userid 110) id 6E429658239; Tue, 9 Dec 2008 13:36:13 +0000 (GMT) Received: from mail.xi-lite.com (unknown [193.34.35.243]) by co203.xi-lite.net (Postfix) with ESMTP id 67DBA6581F2 for ; Tue, 9 Dec 2008 13:36:13 +0000 (GMT) Received: from [172.20.3.211] ([84.14.91.202]) by mail.xi-lite.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Dec 2008 13:37:08 +0000 Message-ID: <493E744C.2060202@parrot.com> Date: Tue, 09 Dec 2008 14:36:12 +0100 From: Matthieu CASTET User-Agent: Mozilla-Thunderbird 2.0.0.17 (X11/20081018) MIME-Version: 1.0 To: linux-mtd@lists.infradead.org Subject: [PATCH] m25p80 : add m45pe10 ids X-Enigmail-Version: 0.95.0 X-OriginalArrivalTime: 09 Dec 2008 13:37:08.0346 (UTC) FILETIME=[3B52E5A0:01C95A03] X-AV-Checked: No Virus Found X-Spam-Score: 0.0 (/) X-Mailman-Approved-At: Tue, 09 Dec 2008 08:45:21 -0500 X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.9 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Hi, this patch add m45pe10 [1] chip support to m25p80 driver. [1] http://www.numonyx.com/Documents/Datasheets/M45PE10.pdf Signed-off-by: Matthieu CASTET diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 76a7675..a888299 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -528,6 +528,7 @@ static struct flash_info __devinitdata m25p_data [] = { { "m25p64", 0x202017, 0, 64 * 1024, 128, }, { "m25p128", 0x202018, 0, 256 * 1024, 64, }, + { "m45pe10", 0x204011, 0, 64 * 1024, 2, }, { "m45pe80", 0x204014, 0, 64 * 1024, 16, }, { "m45pe16", 0x204015, 0, 64 * 1024, 32, },