snd_soc_component_update_bits_async — Perform asynchronous read/modify/write cycle
int snd_soc_component_update_bits_async ( | struct snd_soc_component * component, |
| unsigned int reg, | |
| unsigned int mask, | |
unsigned int val); |
componentComponent to update
regRegister to update
maskMask that specifies which bits to update
valNew value for the bits specified by mask
This function is similar to snd_soc_component_update_bits, but the update
operation is scheduled asynchronously. This means it may not be completed
when the function returns. To make sure that all scheduled updates have been
completed snd_soc_component_async_complete must be called.