summaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_octeon_cf.c
diff options
context:
space:
mode:
authorH Hartley Sweeten2009-12-11 02:03:10 +0100
committerJeff Garzik2009-12-17 07:02:50 +0100
commit4716eaf20f37d10fd01b0fcacb3e41c1abd362c3 (patch)
tree1bc17f6737f9715554ca3687ea9945327a823438 /drivers/ata/pata_octeon_cf.c
parentlibata: use the WRITE_SAME_16 define (diff)
downloadkernel-qcow2-linux-4716eaf20f37d10fd01b0fcacb3e41c1abd362c3.tar.gz
kernel-qcow2-linux-4716eaf20f37d10fd01b0fcacb3e41c1abd362c3.tar.xz
kernel-qcow2-linux-4716eaf20f37d10fd01b0fcacb3e41c1abd362c3.zip
pata_octeon_cf: use resource_size(), to fix resource sizing bug
It appears the size for cs1 is calculated using the wrong resource. Use the function resource_size to get the correct value. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/pata_octeon_cf.c')
-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 d6f69561dc86..37ef416c1242 100644
--- a/drivers/ata/pata_octeon_cf.c
+++ b/drivers/ata/pata_octeon_cf.c
@@ -853,7 +853,7 @@ static int __devinit octeon_cf_probe(struct platform_device *pdev)
return -EINVAL;
cs1 = devm_ioremap_nocache(&pdev->dev, res_cs1->start,
- res_cs0->end - res_cs1->start + 1);
+ resource_size(res_cs1));
if (!cs1)
return -ENOMEM;