Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mtd: nand: denali: remove unused struct member totalblks, blksperchip

The denali->blksperchip is set, but not referenced any more. The
denali->totalblks is used only for calculating denali->blksperchip.
Both of them are unneeded.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>

authored by

Masahiro Yamada and committed by
Boris Brezillon
37656391 789ccf17

-10
-8
drivers/mtd/nand/denali.c
··· 1573 1573 denali->nand.ecc.bytes *= denali->devnum; 1574 1574 denali->nand.ecc.strength *= denali->devnum; 1575 1575 1576 - /* 1577 - * Let driver know the total blocks number and how many blocks 1578 - * contained by each nand chip. blksperchip will help driver to 1579 - * know how many blocks is taken by FW. 1580 - */ 1581 - denali->totalblks = mtd->size >> denali->nand.phys_erase_shift; 1582 - denali->blksperchip = denali->totalblks / denali->nand.numchips; 1583 - 1584 1576 /* override the default read operations */ 1585 1577 denali->nand.ecc.size = ECC_SECTOR_SIZE * denali->devnum; 1586 1578 denali->nand.ecc.read_page = denali_read_page;
-2
drivers/mtd/nand/denali.h
··· 462 462 int irq; 463 463 464 464 uint32_t devnum; /* represent how many nands connected */ 465 - uint32_t totalblks; 466 - uint32_t blksperchip; 467 465 uint32_t bbtskipbytes; 468 466 uint32_t max_banks; 469 467 };