• Home
  • Raw
  • Download

Lines Matching refs:read_byte

369 			bad = chip->read_byte(mtd);  in nand_block_bad()
494 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1; in nand_check_wp()
580 if ((chip->read_byte(mtd) & NAND_STATUS_READY)) in nand_wait_status_ready()
852 if (chip->read_byte(mtd) & NAND_STATUS_READY) in panic_nand_wait()
890 if (chip->read_byte(mtd) & NAND_STATUS_READY) in nand_wait()
896 status = (int)chip->read_byte(mtd); in nand_wait()
3078 *subfeature_param++ = chip->read_byte(mtd); in nand_onfi_get_features()
3107 if (!chip->read_byte || chip->read_byte == nand_read_byte) in nand_set_defaults()
3108 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte; in nand_set_defaults()
3272 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' || in nand_flash_detect_onfi()
3273 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I') in nand_flash_detect_onfi()
3279 ((uint8_t *)p)[j] = chip->read_byte(mtd); in nand_flash_detect_onfi()
3384 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' || in nand_flash_detect_jedec()
3385 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' || in nand_flash_detect_jedec()
3386 chip->read_byte(mtd) != 'C') in nand_flash_detect_jedec()
3392 ((uint8_t *)p)[j] = chip->read_byte(mtd); in nand_flash_detect_jedec()
3780 *maf_id = chip->read_byte(mtd); in nand_get_flash_type()
3781 *dev_id = chip->read_byte(mtd); in nand_get_flash_type()
3794 id_data[i] = chip->read_byte(mtd); in nand_get_flash_type()
4061 if (nand_maf_id != chip->read_byte(mtd) || in nand_scan_ident()
4062 nand_dev_id != chip->read_byte(mtd)) { in nand_scan_ident()