Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751255AbeAOSUl (ORCPT + 1 other); Mon, 15 Jan 2018 13:20:41 -0500 Received: from smtp-fw-4101.amazon.com ([72.21.198.25]:34357 "EHLO smtp-fw-4101.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750740AbeAOSUj (ORCPT ); Mon, 15 Jan 2018 13:20:39 -0500 X-IronPort-AV: E=Sophos;i="5.46,364,1511827200"; d="scan'208";a="703448667" From: Luis de Bethencourt To: linux-kernel@vger.kernel.org Cc: alsa-devel@alsa-project.org, Joe Perches , Jaroslav Kysela , Takashi Iwai , Takashi Sakamoto , Ubuntu Subject: [PATCH] ALSA: pcm: Fix trailing semicolon Date: Mon, 15 Jan 2018 18:18:57 +0000 Message-Id: <20180115181857.32105-1-luisbg@kernel.org> X-Mailer: git-send-email 2.15.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: From: Ubuntu 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 --- Hi, After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0]. Best regards Luis [0] http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-January/115410.html [1] http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-January/115390.html sound/core/pcm_native.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 3f13e8da0812..51104df924e1 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); 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); -- 2.15.1