Lines Matching refs:stored_volume
369 int *stored_volume = is_capture ? in mixart_analog_vol_put() local
381 if (*stored_volume != new_volume) { in mixart_analog_vol_put()
382 *stored_volume = new_volume; in mixart_analog_vol_put()
825 int *stored_volume; in mixart_pcm_vol_get() local
830 if(is_aes) stored_volume = chip->digital_capture_volume[1]; /* AES capture */ in mixart_pcm_vol_get()
831 else stored_volume = chip->digital_capture_volume[0]; /* analog capture */ in mixart_pcm_vol_get()
834 …if(is_aes) stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; /* AES pl… in mixart_pcm_vol_get()
835 else stored_volume = chip->digital_playback_volume[idx]; /* analog playback */ in mixart_pcm_vol_get()
837 ucontrol->value.integer.value[0] = stored_volume[0]; in mixart_pcm_vol_get()
838 ucontrol->value.integer.value[1] = stored_volume[1]; in mixart_pcm_vol_get()
850 int* stored_volume; in mixart_pcm_vol_put() local
855 stored_volume = chip->digital_capture_volume[1]; in mixart_pcm_vol_put()
857 stored_volume = chip->digital_capture_volume[0]; in mixart_pcm_vol_put()
861 stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; in mixart_pcm_vol_put()
863 stored_volume = chip->digital_playback_volume[idx]; in mixart_pcm_vol_put()
870 if (stored_volume[i] != vol) { in mixart_pcm_vol_put()
871 stored_volume[i] = vol; in mixart_pcm_vol_put()