Commit 4716eaf2 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Jeff Garzik

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 0cdd6eb7
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment