aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/nand/nand_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 75d199e4f25..33550c43acc 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -2894,7 +2894,7 @@ static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2894 mtd->writesize = le32_to_cpu(p->byte_per_page); 2894 mtd->writesize = le32_to_cpu(p->byte_per_page);
2895 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize; 2895 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2896 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page); 2896 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
2897 chip->chipsize = le32_to_cpu(p->blocks_per_lun) * mtd->erasesize; 2897 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
2898 busw = 0; 2898 busw = 0;
2899 if (le16_to_cpu(p->features) & 1) 2899 if (le16_to_cpu(p->features) & 1)
2900 busw = NAND_BUSWIDTH_16; 2900 busw = NAND_BUSWIDTH_16;