From mboxrd@z Thu Jan 1 00:00:00 1970 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: 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) Message-ID: <493E744C.2060202@parrot.com> Date: Tue, 09 Dec 2008 14:36:12 +0100 From: Matthieu CASTET MIME-Version: 1.0 To: linux-mtd@lists.infradead.org Subject: [PATCH] m25p80 : add m45pe10 ids Content-Type: multipart/mixed; boundary="------------030603060207050503050305" List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , This is a multi-part message in MIME format. --------------030603060207050503050305 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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 --------------030603060207050503050305 Content-Type: text/x-diff; name="m45pe10.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="m45pe10.diff" 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, }, --------------030603060207050503050305--