diff options
author | Stefan Roese <sr@denx.de> | 2008-01-02 14:05:37 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-01-02 14:05:37 +0100 |
commit | 47cc23cbe9a669c510183f4f049bf703ef445f3b (patch) | |
tree | 64968984875a5333007e3143e9da03d4133ce16e /drivers/mtd/cfi_flash.c | |
parent | 0dc80e2759fba859ccc4cdadc633577ca2971f3e (diff) | |
download | u-boot-imx-47cc23cbe9a669c510183f4f049bf703ef445f3b.zip u-boot-imx-47cc23cbe9a669c510183f4f049bf703ef445f3b.tar.gz u-boot-imx-47cc23cbe9a669c510183f4f049bf703ef445f3b.tar.bz2 |
cfi_flash: Fix bug in flash_isset() to use correct 32bit function
This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
flash chips connected to a 32bit wide port.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r-- | drivers/mtd/cfi_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index d1124d3..4f61e36 100644 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -527,7 +527,7 @@ static int flash_isset (flash_info_t * info, flash_sect_t sect, retval = ((flash_read16(addr) & cword.w) == cword.w); break; case FLASH_CFI_32BIT: - retval = ((flash_read16(addr) & cword.l) == cword.l); + retval = ((flash_read32(addr) & cword.l) == cword.l); break; case FLASH_CFI_64BIT: retval = ((flash_read64(addr) & cword.ll) == cword.ll); |