1
0
Fork 0

ASoC: xlnx: fix up for snd_pcm_lib_preallocate_pages_for_all() API change

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
hifive-unleashed-5.1
Stephen Rothwell 2019-02-08 13:18:23 +11:00 committed by Takashi Iwai
parent 7b48b3b226
commit 95d14640d9
1 changed files with 2 additions and 1 deletions

View File

@ -536,10 +536,11 @@ static int xlnx_formatter_pcm_new(struct snd_soc_pcm_runtime *rtd)
{
struct snd_soc_component *component = snd_soc_rtdcom_lookup(rtd,
DRV_NAME);
return snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
SNDRV_DMA_TYPE_DEV, component->dev,
xlnx_pcm_hardware.buffer_bytes_max,
xlnx_pcm_hardware.buffer_bytes_max);
return 0;
}
static const struct snd_pcm_ops xlnx_formatter_pcm_ops = {