diff options
author | Alexey Korolev <akorolev@infradead.org> | 2007-11-23 09:31:56 +0000 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-11-23 09:35:41 +0000 |
commit | b1c9c9be6da010510459aca93f5754efb19695ff (patch) | |
tree | dc35b6b84e8eff42c8e47e043962a85d7f2245e6 /drivers/mtd/chips | |
parent | 92525726df0c30e080b0fce9b0eb699c622d261e (diff) |
[MTD] [NOR] Support Intel P3x flash support with CFI version 1.5
Signed-off-by: Alexey Korolev <akorolev@infradead.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/chips')
-rw-r--r-- | drivers/mtd/chips/cfi_cmdset_0001.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/chips/cfi_cmdset_0001.c b/drivers/mtd/chips/cfi_cmdset_0001.c index da851c217fc..ed5ce41d137 100644 --- a/drivers/mtd/chips/cfi_cmdset_0001.c +++ b/drivers/mtd/chips/cfi_cmdset_0001.c @@ -320,7 +320,7 @@ read_pri_intelext(struct map_info *map, __u16 adr) return NULL; if (extp->MajorVersion != '1' || - (extp->MinorVersion < '0' || extp->MinorVersion > '4')) { + (extp->MinorVersion < '0' || extp->MinorVersion > '5')) { printk(KERN_ERR " Unknown Intel/Sharp Extended Query " "version %c.%c.\n", extp->MajorVersion, extp->MinorVersion); |