diff options
author | Vaishali Thakkar <vaishali.thakkar@oracle.com> | 2016-04-11 10:23:03 +0530 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2016-04-22 00:29:22 +0200 |
commit | f4b9ef653c047165f096d32816904be5ee337a63 (patch) | |
tree | 04e069bc836e9def265de0e1c54a35b9b81270dc /drivers | |
parent | 5ed400dd96d8222e667ee473c7ebd676f05113f8 (diff) | |
download | linux-f4b9ef653c047165f096d32816904be5ee337a63.tar.gz |
clk: sunxi: Use resource_size
Use the function resource_size instaed of explicit computation.
Problem found using Coccinelle.
Signed-off-by: Vaishali Thakkar <vaishali.thakkar@oracle.com>
Acked-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/sunxi/clk-sun9i-mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi/clk-sun9i-mmc.c b/drivers/clk/sunxi/clk-sun9i-mmc.c index a9b176139aca..0c2dd02d8dec 100644 --- a/drivers/clk/sunxi/clk-sun9i-mmc.c +++ b/drivers/clk/sunxi/clk-sun9i-mmc.c @@ -106,7 +106,7 @@ static int sun9i_a80_mmc_config_clk_probe(struct platform_device *pdev) r = platform_get_resource(pdev, IORESOURCE_MEM, 0); /* one clock/reset pair per word */ - count = DIV_ROUND_UP((r->end - r->start + 1), SUN9I_MMC_WIDTH); + count = DIV_ROUND_UP((resource_size(r)), SUN9I_MMC_WIDTH); data->membase = devm_ioremap_resource(&pdev->dev, r); if (IS_ERR(data->membase)) return PTR_ERR(data->membase); |