diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2010-05-23 17:02:43 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2010-05-23 17:02:43 +0000 |
commit | 08821d137a86000a29f48115a627269ded817698 (patch) | |
tree | b686f60790c3a2c4448083a9628f88761f6859f0 /target/linux | |
parent | e9246f9c56d02b1be321b9939b1b107cd2b4c89f (diff) | |
download | mtk-20170518-08821d137a86000a29f48115a627269ded817698.zip mtk-20170518-08821d137a86000a29f48115a627269ded817698.tar.gz mtk-20170518-08821d137a86000a29f48115a627269ded817698.tar.bz2 |
orion: fix build
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.
SVN-Revision: 21551
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch b/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch index 246276d..f10f89e 100644 --- a/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch +++ b/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch @@ -4,10 +4,10 @@ cfi_fixup_major_minor(cfi, extp); -- if (extp->MajorVersion != '1' || +- if (extp->MajorVersion < '0' || extp->MajorVersion > '3' || - (extp->MinorVersion < '0' || extp->MinorVersion > '4')) { + if ((extp->MajorVersion != '0' && extp->MinorVersion != '0') && -+ (extp->MajorVersion != '1' || ++ (extp->MajorVersion < '0' || extp->MajorVersion > '3' || + (extp->MinorVersion < '0' || extp->MinorVersion > '4'))) { if (cfi->mfr == MANUFACTURER_SAMSUNG && (extp->MajorVersion == '3' && extp->MinorVersion == '3')) { |