Add patch to allow newer NOR chip query table.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3445 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Robert Bradford 2008-01-10 10:48:43 +00:00
parent 44611fd69c
commit 1ffa3184c3
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
Index: linux-2.6.19.2/drivers/mtd/chips/cfi_cmdset_0001.c
===================================================================
--- linux-2.6.19.2.orig/drivers/mtd/chips/cfi_cmdset_0001.c 2008-01-10 11:06:29.000000000 +0000
+++ linux-2.6.19.2/drivers/mtd/chips/cfi_cmdset_0001.c 2008-01-10 11:06:58.000000000 +0000
@@ -263,7 +263,7 @@
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);

View File

@ -221,6 +221,7 @@ SRC_URI_append_mx31phy = " \
file://linux-2.6.19.2-i2c_fix.patch;patch=1 \
file://linux-2.6.19.2-clock_fix.patch;patch=1 \
file://linux-2.6.19.2-ipu_rgb_fix.patch;patch=1 \
file://nor-query-table-fix.patch;patch=1 \
"
S = "${WORKDIR}/linux-2.6.19.2"