summaryrefslogtreecommitdiffstats
path: root/drivers/nor
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/nor')
-rw-r--r--drivers/nor/cfi_flash_intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nor/cfi_flash_intel.c b/drivers/nor/cfi_flash_intel.c
index 6318cfec83..f0cbf72d88 100644
--- a/drivers/nor/cfi_flash_intel.c
+++ b/drivers/nor/cfi_flash_intel.c
@@ -68,7 +68,7 @@ static int intel_flash_write_cfibuffer (struct flash_info *info, ulong dest, con
return retcode;
/* reduce the number of loops by the width of the port */
- cnt = len >> (info->portwidth - 1);
+ cnt = len / width;
flash_write_cmd(info, sector, 0, (u32)cnt - 1);
while (cnt-- > 0) {