[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1363507294-19958-1-git-send-email-silviupopescu1990@gmail.com>
Date: Sun, 17 Mar 2013 10:01:34 +0200
From: Silviu-Mihai Popescu <silviupopescu1990@...il.com>
To: linux-kernel@...r.kernel.org
Cc: cbou@...l.ru, dwmw2@...radead.org,
Silviu-Mihai Popescu <silviupopescu1990@...il.com>
Subject: [PATCH] drivers: power: goldfish: use resource_size()
This uses the resource_size() function instead of explicit computation.
Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@...il.com>
---
drivers/power/goldfish_battery.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/power/goldfish_battery.c b/drivers/power/goldfish_battery.c
index c10f460..29eba88 100644
--- a/drivers/power/goldfish_battery.c
+++ b/drivers/power/goldfish_battery.c
@@ -178,7 +178,7 @@ static int goldfish_battery_probe(struct platform_device *pdev)
return -ENODEV;
}
- data->reg_base = devm_ioremap(&pdev->dev, r->start, r->end - r->start + 1);
+ data->reg_base = devm_ioremap(&pdev->dev, r->start, resource_size(r));
if (data->reg_base == NULL) {
dev_err(&pdev->dev, "unable to remap MMIO\n");
return -ENOMEM;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists