Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c7f6919 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Takashi Iwai
Browse files

ALSA: pcm: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent c469652b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3446,7 +3446,7 @@ EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
			   struct vm_area_struct *area)
{
	struct snd_pcm_runtime *runtime = substream->runtime;;
	struct snd_pcm_runtime *runtime = substream->runtime;

	area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
	return vm_iomap_memory(area, runtime->dma_addr, runtime->dma_bytes);