summaryrefslogtreecommitdiff
path: root/drivers/ata
diff options
context:
space:
mode:
authorAlexandru Gheorghiu <gheorghiuandru@gmail.com>2013-03-16 16:32:11 +0200
committerJeff Garzik <jgarzik@redhat.com>2013-04-03 19:53:30 -0400
commitb1cbe7d6214042a6f08da7295757023938bcfdac (patch)
treeea4c3460185cfa4fcf120088bb6168f0b16696c5 /drivers/ata
parente0044c9822ab7b60b493bc135ec258227a082b5a (diff)
downloadlinux-3.10-b1cbe7d6214042a6f08da7295757023938bcfdac.tar.gz
linux-3.10-b1cbe7d6214042a6f08da7295757023938bcfdac.tar.bz2
linux-3.10-b1cbe7d6214042a6f08da7295757023938bcfdac.zip
pata_octeon_cf: Use resource_size function
Use resource_size function instead of explicit computation. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/pata_octeon_cf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c
index ff2e57f3b59..e73bef3093d 100644
--- a/drivers/ata/pata_octeon_cf.c
+++ b/drivers/ata/pata_octeon_cf.c
@@ -926,7 +926,7 @@ static int octeon_cf_probe(struct platform_device *pdev)
goto free_cf_port;
}
cs1 = devm_ioremap_nocache(&pdev->dev, res_cs1->start,
- res_cs1->end - res_cs1->start + 1);
+ resource_size(res_cs1));
if (!cs1)
goto free_cf_port;