mmc: wmt-sdmmc: Use resource_size()

Used resource_size function instead of explicit computation.
Patch found using coccinelle.

Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
Alexandru Gheorghiu 2013-03-12 01:04:54 +02:00 committed by Chris Ball
parent 8a8396ae21
commit 2211990162
1 changed files with 1 additions and 1 deletions

View File

@ -923,7 +923,7 @@ static int wmt_mci_remove(struct platform_device *pdev)
clk_put(priv->clk_sdmmc);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
release_mem_region(res->start, res->end - res->start + 1);
release_mem_region(res->start, resource_size(res));
mmc_free_host(mmc);