From: Claudio Mignanti Date: Fri, 15 Jan 2010 13:40:18 +0000 (+0000) Subject: etrax: fix detection of samsung flash chip (#6155) X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=f7c8cd7d726880f2de998a7092fac64d89d2adaa;p=15.05%2Fopenwrt.git etrax: fix detection of samsung flash chip (#6155) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19153 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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')) {