diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2010-05-23 17:02:43 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2010-05-23 17:02:43 +0000 |
commit | 0d6ac72c6505a43c5b9cee6ad0eb866a7f8f81f2 (patch) | |
tree | 7ae4d43535a38393080520aade9d3f395da23e4f /target/linux/orion/patches | |
parent | 43f12f1b43a04e97b3eb0c4d757e9bd9be85261a (diff) | |
download | upstream-0d6ac72c6505a43c5b9cee6ad0eb866a7f8f81f2.tar.gz upstream-0d6ac72c6505a43c5b9cee6ad0eb866a7f8f81f2.tar.bz2 upstream-0d6ac72c6505a43c5b9cee6ad0eb866a7f8f81f2.zip |
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.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21551 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/patches')
-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 246276d1f3..f10f89e789 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')) { |