linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 149/177] drivers/mmc/host/omap_hsmmc.c: use resource_size()
@ 2011-03-22 23:34 akpm
  2011-03-23  7:38 ` Kishore Kadiyala
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2011-03-22 23:34 UTC (permalink / raw)
  To: torvalds; +Cc: akpm, cjb, linux-mmc, madhu.cr

From: Chris Ball <cjb@laptop.org>

Use resource_size().

Signed-off-by: Chris Ball <cjb@laptop.org>
Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/mmc/host/omap_hsmmc.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff -puN drivers/mmc/host/omap_hsmmc.c~drivers-mmc-host-omap_hsmmcc-use-resource_size drivers/mmc/host/omap_hsmmc.c
--- a/drivers/mmc/host/omap_hsmmc.c~drivers-mmc-host-omap_hsmmcc-use-resource_size
+++ a/drivers/mmc/host/omap_hsmmc.c
@@ -2047,8 +2047,7 @@ static int __init omap_hsmmc_probe(struc
 
 	res->start += pdata->reg_offset;
 	res->end += pdata->reg_offset;
-	res = request_mem_region(res->start, res->end - res->start + 1,
-							pdev->name);
+	res = request_mem_region(res->start, resource_size(res), pdev->name);
 	if (res == NULL)
 		return -EBUSY;
 
@@ -2287,7 +2286,7 @@ err1:
 err_alloc:
 	omap_hsmmc_gpio_free(pdata);
 err:
-	release_mem_region(res->start, res->end - res->start + 1);
+	release_mem_region(res->start, resource_size(res));
 	return ret;
 }
 
@@ -2324,7 +2323,7 @@ static int omap_hsmmc_remove(struct plat
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	if (res)
-		release_mem_region(res->start, res->end - res->start + 1);
+		release_mem_region(res->start, resource_size(res));
 	platform_set_drvdata(pdev, NULL);
 
 	return 0;
_

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [patch 149/177] drivers/mmc/host/omap_hsmmc.c: use resource_size()
  2011-03-22 23:34 [patch 149/177] drivers/mmc/host/omap_hsmmc.c: use resource_size() akpm
@ 2011-03-23  7:38 ` Kishore Kadiyala
  0 siblings, 0 replies; 2+ messages in thread
From: Kishore Kadiyala @ 2011-03-23  7:38 UTC (permalink / raw)
  To: akpm; +Cc: torvalds, cjb, linux-mmc, madhu.cr

On Wed, Mar 23, 2011 at 5:04 AM,  <akpm@linux-foundation.org> wrote:
> From: Chris Ball <cjb@laptop.org>
>
> Use resource_size().
>
> Signed-off-by: Chris Ball <cjb@laptop.org>
> Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
> Cc: <linux-mmc@vger.kernel.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Feel free to add
Acked-by: Kishore Kadiyala <kishore.kadiyala@ti.com>

> ---
>
>  drivers/mmc/host/omap_hsmmc.c |    7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff -puN drivers/mmc/host/omap_hsmmc.c~drivers-mmc-host-omap_hsmmcc-use-resource_size drivers/mmc/host/omap_hsmmc.c
> --- a/drivers/mmc/host/omap_hsmmc.c~drivers-mmc-host-omap_hsmmcc-use-resource_size
> +++ a/drivers/mmc/host/omap_hsmmc.c
> @@ -2047,8 +2047,7 @@ static int __init omap_hsmmc_probe(struc
>
>        res->start += pdata->reg_offset;
>        res->end += pdata->reg_offset;
> -       res = request_mem_region(res->start, res->end - res->start + 1,
> -                                                       pdev->name);
> +       res = request_mem_region(res->start, resource_size(res), pdev->name);
>        if (res == NULL)
>                return -EBUSY;
>
> @@ -2287,7 +2286,7 @@ err1:
>  err_alloc:
>        omap_hsmmc_gpio_free(pdata);
>  err:
> -       release_mem_region(res->start, res->end - res->start + 1);
> +       release_mem_region(res->start, resource_size(res));
>        return ret;
>  }
>
> @@ -2324,7 +2323,7 @@ static int omap_hsmmc_remove(struct plat
>
>        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>        if (res)
> -               release_mem_region(res->start, res->end - res->start + 1);
> +               release_mem_region(res->start, resource_size(res));
>        platform_set_drvdata(pdev, NULL);
>
>        return 0;
> _
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-23  7:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-22 23:34 [patch 149/177] drivers/mmc/host/omap_hsmmc.c: use resource_size() akpm
2011-03-23  7:38 ` Kishore Kadiyala

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).