aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses/i2c-simtec.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2009-07-05 08:37:50 +0200
committerBen Dooks <ben-linux@fluff.org>2009-07-15 00:03:56 +0100
commit593308259bbd335eda9c5280cdd1f7883c746211 (patch)
tree60c9882dec12dfa7a262f1d14a81b8318d45d0f4 /drivers/i2c/busses/i2c-simtec.c
parent7605fa3b0aedbb6c77471517ba16753f276156d9 (diff)
downloadkernel_samsung_smdk4412-593308259bbd335eda9c5280cdd1f7883c746211.zip
kernel_samsung_smdk4412-593308259bbd335eda9c5280cdd1f7883c746211.tar.gz
kernel_samsung_smdk4412-593308259bbd335eda9c5280cdd1f7883c746211.tar.bz2
i2c: Use resource_size
Use the function resource_size, which reduces the chance of introducing off-by-one errors in calculating the resource size. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // <smpl> @@ struct resource *res; @@ - (res->end - res->start) + 1 + resource_size(res) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-simtec.c')
-rw-r--r--drivers/i2c/busses/i2c-simtec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-simtec.c b/drivers/i2c/busses/i2c-simtec.c
index 042fda2..6407f47 100644
--- a/drivers/i2c/busses/i2c-simtec.c
+++ b/drivers/i2c/busses/i2c-simtec.c
@@ -92,7 +92,7 @@ static int simtec_i2c_probe(struct platform_device *dev)
goto err;
}
- size = (res->end-res->start)+1;
+ size = resource_size(res);
pd->ioarea = request_mem_region(res->start, size, dev->name);
if (pd->ioarea == NULL) {