diff options
author | Claudio Mignanti <c.mignanti@gmail.com> | 2010-01-15 13:40:18 +0000 |
---|---|---|
committer | Claudio Mignanti <c.mignanti@gmail.com> | 2010-01-15 13:40:18 +0000 |
commit | f7c8cd7d726880f2de998a7092fac64d89d2adaa (patch) | |
tree | 6a816ef9f43e3bdf2e19513c828a7b158d082ad0 /target/linux/etrax/patches-2.6.30 | |
parent | e17e2be08e63b3735e2e16c07638477129fce527 (diff) | |
download | upstream-f7c8cd7d726880f2de998a7092fac64d89d2adaa.tar.gz upstream-f7c8cd7d726880f2de998a7092fac64d89d2adaa.tar.bz2 upstream-f7c8cd7d726880f2de998a7092fac64d89d2adaa.zip |
etrax: fix detection of samsung flash chip (#6155)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19153 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/etrax/patches-2.6.30')
-rw-r--r-- | target/linux/etrax/patches-2.6.30/200-samsung_flash.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/etrax/patches-2.6.30/200-samsung_flash.patch b/target/linux/etrax/patches-2.6.30/200-samsung_flash.patch index ef4f8e57dc..4176ec3950 100644 --- a/target/linux/etrax/patches-2.6.30/200-samsung_flash.patch +++ b/target/linux/etrax/patches-2.6.30/200-samsung_flash.patch @@ -5,7 +5,7 @@ cfi_fixup_major_minor(cfi, extp); - if (extp->MajorVersion != '1' || -+ if (extp->MajorVersion < '1' || extp->MajorVersion > '3' || ++ if (extp->MajorVersion < '0' || extp->MajorVersion > '3' || (extp->MinorVersion < '0' || extp->MinorVersion > '4')) { if (cfi->mfr == MANUFACTURER_SAMSUNG && (extp->MajorVersion == '3' && extp->MinorVersion == '3')) { |