aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-12-14 08:00:31 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-12-14 08:00:31 +0000
commit5b6db1bc9c72981a41e5f63b42d1ed5cd574f662 (patch)
tree7921a4d6dae80056c2f0f78a44b16e06a5c253df /target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
parentf03060acbea0bb5d472633f9b0b38b226da51567 (diff)
downloadupstream-5b6db1bc9c72981a41e5f63b42d1ed5cd574f662.tar.gz
upstream-5b6db1bc9c72981a41e5f63b42d1ed5cd574f662.tar.bz2
upstream-5b6db1bc9c72981a41e5f63b42d1ed5cd574f662.zip
ramips: remove 2.6.3[24] support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24562 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch')
-rw-r--r--target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch b/target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
deleted file mode 100644
index a4fb2352f2..0000000000
--- a/target/linux/ramips/patches-2.6.34/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/drivers/mtd/chips/cfi_cmdset_0002.c
-+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
-@@ -1557,7 +1557,7 @@ static int __xipram do_erase_chip(struct
- chip->erase_suspended = 0;
- }
-
-- if (chip_ready(map, adr))
-+ if (chip_good(map, adr, map_word_ff(map)))
- break;
-
- if (time_after(jiffies, timeo)) {
-@@ -1645,7 +1645,7 @@ static int __xipram do_erase_oneblock(st
- chip->erase_suspended = 0;
- }
-
-- if (chip_ready(map, adr)) {
-+ if (chip_good(map, adr, map_word_ff(map))) {
- xip_enable(map, chip, adr);
- break;
- }