Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753145AbaFMIs1 (ORCPT ); Fri, 13 Jun 2014 04:48:27 -0400 Received: from cantor2.suse.de ([195.135.220.15]:42066 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752286AbaFMIsZ (ORCPT ); Fri, 13 Jun 2014 04:48:25 -0400 Date: Fri, 13 Jun 2014 10:48:23 +0200 Message-ID: From: Takashi Iwai To: Himangi Saraogi Cc: Jaroslav Kysela , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, julia.lawall@lip6.fr Subject: Re: [PATCH] ALSA: au1x00: Use resource_size In-Reply-To: <20140612220206.GA10257@himangi-Dell> References: <20140612220206.GA10257@himangi-Dell> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/24.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Fri, 13 Jun 2014 03:32:07 +0530, Himangi Saraogi wrote: > > Use the function resource_size, which reduces the chance of introducing > off-by-one errors in calculating the resource size. > > The semantic patch that makes this change is as follows: > > // > @@ > struct resource *res; > @@ > > - (res->end - res->start) + 1 > + resource_size(res) > // > > Signed-off-by: Himangi Saraogi > Acked-by: Julia Lawall This was already fixed in sound git tree. thanks, Takashi > --- > Not compile tested. > sound/mips/au1x00.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/mips/au1x00.c b/sound/mips/au1x00.c > index d10ef76..86583c7 100644 > --- a/sound/mips/au1x00.c > +++ b/sound/mips/au1x00.c > @@ -649,7 +649,7 @@ static int au1000_ac97_probe(struct platform_device *pdev) > > err = -EBUSY; > au1000->ac97_res_port = request_mem_region(r->start, > - r->end - r->start + 1, pdev->name); > + resource_size(r), pdev->name); > if (!au1000->ac97_res_port) { > snd_printk(KERN_ERR "ALSA AC97: can't grab AC97 port\n"); > goto out; > -- > 1.9.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/