Lines Matching refs:value
438 * snd_soc_component_read() - Read register value
442 * Return: read value
472 * snd_soc_component_write() - Write register value
518 * @val: New value for the bits specified by mask
520 * Return: 1 if the operation was successful and the value of the register
521 * changed, 0 if the operation was successful, but the value did not change.
549 * @val: New value for the bits specified by mask
556 * Return: 1 if the operation was successful and the value of the register
557 * changed, 0 if the operation was successful, but the value did not change.
598 * @value: Value to test against
600 * Tests a register with a new value and checks if the new value is
601 * different from the old value.
606 unsigned int reg, unsigned int mask, unsigned int value)
611 new = (old & ~mask) | value;