ALSA: hda/ca0132: Switch to new stream-format interface
authorCezary Rojewski <cezary.rojewski@intel.com>
Fri, 17 Nov 2023 12:06:01 +0000 (13:06 +0100)
committerTakashi Iwai <tiwai@suse.de>
Mon, 27 Nov 2023 16:28:06 +0000 (17:28 +0100)
To provide option for selecting different bit-per-sample than just the
maximum one, use the new format calculation mechanism.

Acked-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Acked-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20231117120610.1755254-8-cezary.rojewski@intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_ca0132.c

index 748a3c40966e9725e3760600d8bc8126576316fc..aa312441604f8c945d7daf0f20d3b1698b0b5ce0 100644 (file)
@@ -3022,8 +3022,7 @@ static int dma_convert_to_hda_format(struct hda_codec *codec,
 {
        unsigned int format_val;
 
-       format_val = snd_hdac_calc_stream_format(sample_rate,
-                               channels, SNDRV_PCM_FORMAT_S32_LE, 32, 0);
+       format_val = snd_hdac_stream_format(channels, 32, sample_rate);
 
        if (hda_format)
                *hda_format = (unsigned short)format_val;