ALSA: oxygen: export oxygen_update_dac_routing symbol

When the user switches the output from stereo to multichannel
or vice versa, the driver needs to update the channel routing.
Instead of creating additional subroutines, I better export existing
oxygen_update_dac_routing symbol from the oxygen mixer
and call this function. It calls model.adjust_dac_routing()
and my function does the work.

Signed-off-by: Roman Volkov <v1ron@mail.ru>
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>

authored by Roman Volkov and committed by Clemens Ladisch e9c2f10b 079e0cb7

+1
+1
sound/pci/oxygen/oxygen_mixer.c
··· 190 if (chip->model.update_center_lfe_mix) 191 chip->model.update_center_lfe_mix(chip, chip->dac_routing > 2); 192 } 193 194 static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) 195 {
··· 190 if (chip->model.update_center_lfe_mix) 191 chip->model.update_center_lfe_mix(chip, chip->dac_routing > 2); 192 } 193 + EXPORT_SYMBOL(oxygen_update_dac_routing); 194 195 static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) 196 {