mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 13:30:38 +02:00
a325f45fb4
This patch does not apply any more because of changes in target/linux/generic-2.6/patches-2.6.32/089-mtd-samsung-flash.patch TODO: find out if this patch is still needed. Fixes build problem decsripted in #7348. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21551 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
692 B
Diff
15 lines
692 B
Diff
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
|
|
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
|
|
@@ -374,8 +374,9 @@ struct mtd_info *cfi_cmdset_0002(struct
|
|
|
|
cfi_fixup_major_minor(cfi, extp);
|
|
|
|
- if (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
|
|
- (extp->MinorVersion < '0' || extp->MinorVersion > '4')) {
|
|
+ if ((extp->MajorVersion != '0' && extp->MinorVersion != '0') &&
|
|
+ (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
|
|
+ (extp->MinorVersion < '0' || extp->MinorVersion > '4'))) {
|
|
if (cfi->mfr == MANUFACTURER_SAMSUNG &&
|
|
(extp->MajorVersion == '3' && extp->MinorVersion == '3')) {
|
|
printk(KERN_NOTICE " Newer Samsung flash detected, "
|