diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-11-04 14:33:58 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-11-11 09:13:51 +0100 |
commit | ef99d99b2fd921148dc15e706f2fb071ba3fee6c (patch) | |
tree | 62c716f0f91bab5e677aeb472d12068742b6031b /drivers/media/pci | |
parent | 9cb7831384cefdb91378738b66c7f3e1bfd7e26c (diff) | |
download | linux-ef99d99b2fd921148dc15e706f2fb071ba3fee6c.tar.bz2 |
media: solo6x10: Remove superfluous snd_dma_continuous_data()
The recent change (commit 08422d2c559d: "ALSA: memalloc: Allow NULL
device for SNDRV_DMA_TYPE_CONTINOUS type") made the PCM preallocation
helper accepting NULL as the device pointer for the default usage.
Drop the snd_dma_continuous_data() usage that became superfluous from
the callers.
Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers/media/pci')
-rw-r--r-- | drivers/media/pci/solo6x10/solo6x10-g723.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/solo6x10/solo6x10-g723.c b/drivers/media/pci/solo6x10/solo6x10-g723.c index 30c8f2ec9c3c..eaa57d835ea8 100644 --- a/drivers/media/pci/solo6x10/solo6x10-g723.c +++ b/drivers/media/pci/solo6x10/solo6x10-g723.c @@ -353,7 +353,7 @@ static int solo_snd_pcm_init(struct solo_dev *solo_dev) snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS, - snd_dma_continuous_data(GFP_KERNEL), + NULL, G723_PERIOD_BYTES * PERIODS, G723_PERIOD_BYTES * PERIODS); |