Lines Matching refs:status
64 * nanddev_bbt_get_block_status() - Return the status of an eraseblock
68 * Return: a positive number nand_bbt_block_status status or -%ERANGE if @entry
78 unsigned long status;
83 status = pos[0] >> offs;
85 status |= pos[1] << (BITS_PER_LONG - offs);
87 return status & GENMASK(bits_per_block - 1, 0);
92 * nanddev_bbt_set_block_status() - Update the status of an eraseblock in the
96 * @status: the new status
105 enum nand_bbt_block_status status)
111 unsigned long val = status & GENMASK(bits_per_block - 1, 0);