From: Alexandru Gheorghiu Date: Mon, 11 Mar 2013 23:04:54 +0000 (+0200) Subject: mmc: wmt-sdmmc: Use resource_size() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=22119901621f0aca1fefbb5e7100d76d1879ac16;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git mmc: wmt-sdmmc: Use resource_size() Used resource_size function instead of explicit computation. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/wmt-sdmmc.c b/drivers/mmc/host/wmt-sdmmc.c index 74cbc9a98428..442f5766ffca 100644 --- a/drivers/mmc/host/wmt-sdmmc.c +++ b/drivers/mmc/host/wmt-sdmmc.c @@ -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);