svn commit: r317870 - head/sys/dev/flash
Adrian Chadd
adrian at FreeBSD.org
Sat May 6 06:08:45 UTC 2017
Author: adrian
Date: Sat May 6 06:08:44 2017
New Revision: 317870
URL: https://svnweb.freebsd.org/changeset/base/317870
Log:
[mx25l] add new device ids.
Submitted by: Hiroki Mori <yamori813 at yahoo.co.jp>
Differential Revision: https://reviews.freebsd.org/D10621
Modified:
head/sys/dev/flash/mx25l.c
Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c Sat May 6 06:07:44 2017 (r317869)
+++ head/sys/dev/flash/mx25l.c Sat May 6 06:08:44 2017 (r317870)
@@ -110,7 +110,9 @@ struct mx25l_flash_ident flash_devices[]
{ "en25f32", 0x1c, 0x3116, 64 * 1024, 64, FL_NONE },
{ "en25p32", 0x1c, 0x2016, 64 * 1024, 64, FL_NONE },
{ "en25p64", 0x1c, 0x2017, 64 * 1024, 128, FL_NONE },
+ { "en25q32", 0x1c, 0x3016, 64 * 1024, 64, FL_NONE },
{ "en25q64", 0x1c, 0x3017, 64 * 1024, 128, FL_ERASE_4K },
+ { "m25p32", 0x20, 0x2016, 64 * 1024, 64, FL_NONE },
{ "m25p64", 0x20, 0x2017, 64 * 1024, 128, FL_NONE },
{ "mx25ll32", 0xc2, 0x2016, 64 * 1024, 64, FL_NONE },
{ "mx25ll64", 0xc2, 0x2017, 64 * 1024, 128, FL_NONE },
More information about the svn-src-head
mailing list