From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751617AbaJPQmf (ORCPT ); Thu, 16 Oct 2014 12:42:35 -0400 Received: from mga01.intel.com ([192.55.52.88]:33494 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751073AbaJPQme (ORCPT ); Thu, 16 Oct 2014 12:42:34 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,733,1406617200"; d="scan'208";a="615617634" Date: Thu, 16 Oct 2014 21:36:13 +0530 From: Vinod Koul To: Fengguang Wu Cc: Mark Brown , linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org Subject: Re: [PATCH] ASoC: Intel: mrfld: fix semicolon.cocci warnings Message-ID: <20141016160613.GI1638@intel.com> References: <543feedb.9M0AZfu7MKIHlZcy%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <543feedb.9M0AZfu7MKIHlZcy%fengguang.wu@intel.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 17, 2014 at 12:14:19AM +0800, Fengguang Wu wrote: > sound/soc/intel/sst-atom-controls.c:249:2-3: Unneeded semicolon > sound/soc/intel/sst-atom-controls.c:289:2-3: Unneeded semicolon > > > Removes unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > CC: Vinod Koul > Signed-off-by: Fengguang Wu Acked-by: Vinod Koul Thanks -- ~Vinod > --- > > sst-atom-controls.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > --- a/sound/soc/intel/sst-atom-controls.c > +++ b/sound/soc/intel/sst-atom-controls.c > @@ -246,7 +246,7 @@ static int sst_gain_get(struct snd_kcont > dev_err(component->dev, "Invalid Input- gain type:%d\n", > mc->type); > return -EINVAL; > - }; > + } > > return 0; > } > @@ -286,7 +286,7 @@ static int sst_gain_put(struct snd_kcont > dev_err(cmpnt->dev, "Invalid Input- gain type:%d\n", > mc->type); > return -EINVAL; > - }; > + } > > if (mc->w && mc->w->power) > ret = sst_send_gain_cmd(drv, gv, mc->task_id, --