id_bytes          100 drivers/mtd/nand/raw/nandsim.c static u_char id_bytes[8] = {
id_bytes          108 drivers/mtd/nand/raw/nandsim.c module_param_array(id_bytes, byte, NULL, 0400);
id_bytes          109 drivers/mtd/nand/raw/nandsim.c module_param_named(first_id_byte, id_bytes[0], byte, 0400);
id_bytes          110 drivers/mtd/nand/raw/nandsim.c module_param_named(second_id_byte, id_bytes[1], byte, 0400);
id_bytes          111 drivers/mtd/nand/raw/nandsim.c module_param_named(third_id_byte, id_bytes[2], byte, 0400);
id_bytes          112 drivers/mtd/nand/raw/nandsim.c module_param_named(fourth_id_byte, id_bytes[3], byte, 0400);
id_bytes          133 drivers/mtd/nand/raw/nandsim.c MODULE_PARM_DESC(id_bytes,       "The ID bytes returned by NAND Flash 'read ID' command");
id_bytes         2269 drivers/mtd/nand/raw/nandsim.c 	if (id_bytes[6] != 0xFF || id_bytes[7] != 0xFF)
id_bytes         2271 drivers/mtd/nand/raw/nandsim.c 	else if (id_bytes[4] != 0xFF || id_bytes[5] != 0xFF)
id_bytes         2273 drivers/mtd/nand/raw/nandsim.c 	else if (id_bytes[2] != 0xFF || id_bytes[3] != 0xFF)
id_bytes         2280 drivers/mtd/nand/raw/nandsim.c 	memcpy(ns->ids, id_bytes, sizeof(ns->ids));