From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH] ALSA: ac97: ac97_patch: Simplify patch_vt1613_specific() Date: Fri, 06 Mar 2015 17:47:38 +0100 Message-ID: References: <1425660102-5419-1-git-send-email-festevam@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id CBB5B265DB5 for ; Fri, 6 Mar 2015 17:47:38 +0100 (CET) In-Reply-To: <1425660102-5419-1-git-send-email-festevam@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Fabio Estevam Cc: Fabio Estevam , mail@maciej.szmigiero.name, alsa-devel@alsa-project.org List-Id: alsa-devel@alsa-project.org At Fri, 6 Mar 2015 13:41:42 -0300, Fabio Estevam wrote: > > From: Fabio Estevam > > We can simplify the code by returning patch_build_controls() directly. > > Signed-off-by: Fabio Estevam Thanks, applied. Takashi > --- > sound/pci/ac97/ac97_patch.c | 10 ++-------- > 1 file changed, 2 insertions(+), 8 deletions(-) > > diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c > index eca2210..f4234ed 100644 > --- a/sound/pci/ac97/ac97_patch.c > +++ b/sound/pci/ac97/ac97_patch.c > @@ -3360,14 +3360,8 @@ AC97_SINGLE("DC Offset removal", 0x5a, 10, 1, 0), > > static int patch_vt1613_specific(struct snd_ac97 *ac97) > { > - int err; > - > - err = patch_build_controls(ac97, &snd_ac97_controls_vt1613[0], > - ARRAY_SIZE(snd_ac97_controls_vt1613)); > - if (err) > - return err; > - > - return 0; > + return patch_build_controls(ac97, &snd_ac97_controls_vt1613[0], > + ARRAY_SIZE(snd_ac97_controls_vt1613)); > }; > > static const struct snd_ac97_build_ops patch_vt1613_ops = { > -- > 1.9.1 >