aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-07-14 18:00:34 +0000
committerJohn Crispin <blogic@openwrt.org>2013-07-14 18:00:34 +0000
commitd4b8b8d62fcb34be61c325efa6f91d937d19a616 (patch)
tree29b48b2691fa9b9bb934598aab3dd09bb8562f6e /target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
parent6bcbd536ed1e845dce59f5a063bbce293740c26e (diff)
downloadupstream-d4b8b8d62fcb34be61c325efa6f91d937d19a616.tar.gz
upstream-d4b8b8d62fcb34be61c325efa6f91d937d19a616.tar.bz2
upstream-d4b8b8d62fcb34be61c325efa6f91d937d19a616.zip
ralink: drop v3.8 support
Signed-off-by: John Crispin <blogic@opewnrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37311 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch')
-rw-r--r--target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch b/target/linux/ramips/patches-3.8/0210-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
deleted file mode 100644
index 91b887f922..0000000000
--- a/target/linux/ramips/patches-3.8/0210-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
-@@ -1939,7 +1939,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)) {
-@@ -2028,7 +2028,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;
- }