summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nandsim.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2013-03-04 15:05:00 +0100
committerDavid Woodhouse2013-04-05 13:02:41 +0200
commit68aa352de28235bccdcee96ddf49f7628e93ec6f (patch)
tree9e68e5c8dd68951adad97b9a115bc8c8d4b71dc9 /drivers/mtd/nand/nandsim.c
parentmtd: nand: use NAND_HAS_CACHEPROG (diff)
downloadkernel-qcow2-linux-68aa352de28235bccdcee96ddf49f7628e93ec6f.tar.gz
kernel-qcow2-linux-68aa352de28235bccdcee96ddf49f7628e93ec6f.tar.xz
kernel-qcow2-linux-68aa352de28235bccdcee96ddf49f7628e93ec6f.zip
mtd: nand: rename the id field of 'struct nand_flash_dev'
The 'id' is a bit confusing name because NAND IDs are multi-byte. Re-name it to 'dev_id' to make it clear that this is the "device ID" part (the second byte). While on it, clean-up the commentary for 'struct nand_flash_dev'. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Acked-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/nandsim.c')
-rw-r--r--drivers/mtd/nand/nandsim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c
index 7199acc7e7f4..eb1238fc9067 100644
--- a/drivers/mtd/nand/nandsim.c
+++ b/drivers/mtd/nand/nandsim.c
@@ -766,9 +766,9 @@ static int init_nandsim(struct mtd_info *mtd)
}
/* Detect how many ID bytes the NAND chip outputs */
- for (i = 0; nand_flash_ids[i].name != NULL; i++) {
- if (second_id_byte != nand_flash_ids[i].id)
- continue;
+ for (i = 0; nand_flash_ids[i].name != NULL; i++) {
+ if (second_id_byte != nand_flash_ids[i].dev_id)
+ continue;
}
if (ns->busw == 16)