From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752725AbbDEMMw (ORCPT ); Sun, 5 Apr 2015 08:12:52 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:45054 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751389AbbDEMMt (ORCPT ); Sun, 5 Apr 2015 08:12:49 -0400 X-IronPort-AV: E=Sophos;i="5.11,527,1422918000"; d="scan'208";a="131681074" Date: Sun, 5 Apr 2015 14:12:46 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@localhost6.localdomain6 To: Julia Lawall cc: Jaroslav Kysela , kernel-janitors@vger.kernel.org, Takashi Iwai , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/10] sound/atmel/abdac.c: fix error return code In-Reply-To: <1428233914-4503-8-git-send-email-Julia.Lawall@lip6.fr> Message-ID: References: <1428233914-4503-1-git-send-email-Julia.Lawall@lip6.fr> <1428233914-4503-8-git-send-email-Julia.Lawall@lip6.fr> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Please ignore. Wrong patch set. On Sun, 5 Apr 2015, Julia Lawall wrote: > From: Julia Lawall > > Initialize retval before returning from a failed call to ioremap. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > ( > if@p1 (\(ret < 0\|ret != 0\)) > { ... return ret; } > | > ret@p1 = 0 > ) > ... when != ret = e1 > when != &ret > *if(...) > { > ... when != ret = e2 > when forall > return ret; > } > > // > > Signed-off-by: Julia Lawall > > --- > sound/atmel/abdac.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/sound/atmel/abdac.c b/sound/atmel/abdac.c > index 98554f4..277ebce 100644 > --- a/sound/atmel/abdac.c > +++ b/sound/atmel/abdac.c > @@ -452,6 +452,7 @@ static int __devinit atmel_abdac_probe(struct platform_device *pdev) > dac->regs = ioremap(regs->start, resource_size(regs)); > if (!dac->regs) { > dev_dbg(&pdev->dev, "could not remap register memory\n"); > + retval = -ENOMEM; > goto out_free_card; > } > > > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >