diff options
| author | Vasily Khoruzhick <[email protected]> | 2016-03-20 18:37:10 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-03-27 09:13:02 -0400 |
| commit | edc498c651d97e4b2cbd9a83a93a7f815a93e272 (patch) | |
| tree | 7dcf7a6b03ef215b158e231d03790df2980b6b46 /drivers | |
| parent | f9e8a98f16793ae77998b8a81c306ef9190fc1a7 (diff) | |
cfi_flash: return device into read array mode after reading status
Otherwise flash remains in read status mode and it's not possible
to access data on flash.
Signed-off-by: Vasily Khoruzhick <[email protected]>
Acked-by: Stefan Roese <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/cfi_flash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index 39932f46478..18831c62e75 100644 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -2203,6 +2203,8 @@ ulong flash_get_size (phys_addr_t base, int banknum) flash_isset (info, sect_cnt, FLASH_OFFSET_PROTECT, FLASH_STATUS_PROTECT); + flash_write_cmd(info, sect_cnt, 0, + FLASH_CMD_RESET); break; case CFI_CMDSET_AMD_EXTENDED: case CFI_CMDSET_AMD_STANDARD: |
