aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@kernel.org>2018-01-16 08:26:26 -0500
committerTakashi Iwai <tiwai@suse.de>2018-01-16 08:29:48 -0500
commit3c7f69195cdd2a14ab85dfb32805e866eb241a6e (patch)
treeb639bf9562fc8e0fca90a4e152a16803af698352
parentc469652bb5e8fb715db7d152f46d33b3740c9b87 (diff)
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: Luis de Bethencourt <luisbg@kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/core/pcm_native.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
index f08772568c17..484a18d96371 100644
--- a/sound/core/pcm_native.c
+++ b/sound/core/pcm_native.c
@@ -3446,7 +3446,7 @@ EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
3446int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream, 3446int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3447 struct vm_area_struct *area) 3447 struct vm_area_struct *area)
3448{ 3448{
3449 struct snd_pcm_runtime *runtime = substream->runtime;; 3449 struct snd_pcm_runtime *runtime = substream->runtime;
3450 3450
3451 area->vm_page_prot = pgprot_noncached(area->vm_page_prot); 3451 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
3452 return vm_iomap_memory(area, runtime->dma_addr, runtime->dma_bytes); 3452 return vm_iomap_memory(area, runtime->dma_addr, runtime->dma_bytes);