ath79: add support for kernel 5.4
[openwrt/staging/blogic.git] / target / linux / ath79 / patches-5.4 / 403-mtd_fix_cfi_cmdset_0002_status_check.patch
1 --- a/drivers/mtd/chips/cfi_cmdset_0002.c
2 +++ b/drivers/mtd/chips/cfi_cmdset_0002.c
3 @@ -1700,7 +1700,7 @@ static int __xipram do_write_oneword_onc
4 }
5
6 if (chip_good(map, chip, adr, datum))
7 - break;
8 + goto enable_xip;
9
10 /* Latency issues. Drop the lock, wait a while and retry */
11 UDELAY(map, chip, adr, 1);
12 @@ -1782,6 +1782,8 @@ static int __xipram do_write_oneword_ret
13 goto retry;
14 }
15 }
16 +
17 + enable_xip:
18 xip_enable(map, chip, adr);
19
20 return ret;
21 @@ -2401,7 +2403,6 @@ static int cfi_amdstd_panic_write(struct
22 return 0;
23 }
24
25 -
26 /*
27 * Handle devices with one erase region, that only implement
28 * the chip erase command.
29 @@ -2469,7 +2470,7 @@ static int __xipram do_erase_chip(struct
30 }
31
32 if (chip_good(map, chip, adr, map_word_ff(map)))
33 - break;
34 + goto op_done;
35
36 if (time_after(jiffies, timeo)) {
37 printk(KERN_WARNING "MTD %s(): software timeout\n",
38 @@ -2494,6 +2495,7 @@ static int __xipram do_erase_chip(struct
39 }
40 }
41
42 + op_done:
43 chip->state = FL_READY;
44 xip_enable(map, chip, adr);
45 DISABLE_VPP(map);
46 @@ -2566,7 +2568,7 @@ static int __xipram do_erase_oneblock(st
47 }
48
49 if (chip_good(map, chip, adr, map_word_ff(map)))
50 - break;
51 + goto op_done;
52
53 if (time_after(jiffies, timeo)) {
54 printk(KERN_WARNING "MTD %s(): software timeout\n",
55 @@ -2591,6 +2593,7 @@ static int __xipram do_erase_oneblock(st
56 }
57 }
58
59 + op_done:
60 chip->state = FL_READY;
61 xip_enable(map, chip, adr);
62 DISABLE_VPP(map);