Lines Matching refs:status
67 * nanddev_bbt_get_block_status() - Return the status of an eraseblock
71 * Return: a positive number nand_bbt_block_status status or -%ERANGE if @entry
81 unsigned long status;
86 status = pos[0] >> offs;
88 status |= pos[1] << (BITS_PER_LONG - offs);
90 return status & GENMASK(bits_per_block - 1, 0);
95 * nanddev_bbt_set_block_status() - Update the status of an eraseblock in the
99 * @status: the new status
108 enum nand_bbt_block_status status)
114 unsigned long val = status & GENMASK(bits_per_block - 1, 0);