1 --- a/drivers/mtd/chips/cfi_cmdset_0002.c
2 +++ b/drivers/mtd/chips/cfi_cmdset_0002.c
3 @@ -1169,8 +1169,8 @@ static int __xipram do_write_oneword(str
7 - if (chip_ready(map, adr))
9 + if (chip_good(map, adr, datum))
12 /* Latency issues. Drop the lock, wait a while and retry */
13 UDELAY(map, chip, adr, 1);
14 @@ -1186,6 +1186,8 @@ static int __xipram do_write_oneword(str
20 xip_enable(map, chip, adr);
22 chip->state = FL_READY;
23 @@ -1532,7 +1534,6 @@ static int cfi_amdstd_write_buffers(stru
29 * Handle devices with one erase region, that only implement
30 * the chip erase command.
31 @@ -1596,8 +1597,8 @@ static int __xipram do_erase_chip(struct
32 chip->erase_suspended = 0;
35 - if (chip_ready(map, adr))
37 + if (chip_good(map, adr, map_word_ff(map)))
40 if (time_after(jiffies, timeo)) {
41 printk(KERN_WARNING "MTD %s(): software timeout\n",
42 @@ -1617,6 +1618,7 @@ static int __xipram do_erase_chip(struct
47 chip->state = FL_READY;
48 xip_enable(map, chip, adr);
49 put_chip(map, chip, adr);
50 @@ -1684,9 +1686,9 @@ static int __xipram do_erase_oneblock(st
51 chip->erase_suspended = 0;
54 - if (chip_ready(map, adr)) {
55 + if (chip_good(map, adr, map_word_ff(map))) {
56 xip_enable(map, chip, adr);
61 if (time_after(jiffies, timeo)) {
62 @@ -1708,6 +1710,7 @@ static int __xipram do_erase_oneblock(st
67 chip->state = FL_READY;
68 put_chip(map, chip, adr);
69 spin_unlock(chip->mutex);