mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
i2c-s3c2410: use resource_size()
Change the usage of res->end-res->start to resource_size(), missed by the last patch to change this. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
This commit is contained in:
parent
c6ffddea36
commit
933a2aec8d
@ -828,7 +828,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev)
|
||||
goto err_clk;
|
||||
}
|
||||
|
||||
i2c->ioarea = request_mem_region(res->start, (res->end-res->start)+1,
|
||||
i2c->ioarea = request_mem_region(res->start, resource_size(res),
|
||||
pdev->name);
|
||||
|
||||
if (i2c->ioarea == NULL) {
|
||||
@ -837,7 +837,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev)
|
||||
goto err_clk;
|
||||
}
|
||||
|
||||
i2c->regs = ioremap(res->start, (res->end-res->start)+1);
|
||||
i2c->regs = ioremap(res->start, resource_size(res));
|
||||
|
||||
if (i2c->regs == NULL) {
|
||||
dev_err(&pdev->dev, "cannot map IO\n");
|
||||
|
Loading…
Reference in New Issue
Block a user