提交 2e032b62 编写于 作者: H H Hartley Sweeten 提交者: Dan Williams

iop-adma.c: use resource_size()

The size of the requested and ioremaped memory is off by 1.
Use resource_size() to get the correct value.
Signed-off-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: NDan Williams <dan.j.williams@intel.com>
上级 a88f6667
...@@ -1470,7 +1470,7 @@ static int __devinit iop_adma_probe(struct platform_device *pdev) ...@@ -1470,7 +1470,7 @@ static int __devinit iop_adma_probe(struct platform_device *pdev)
return -ENODEV; return -ENODEV;
if (!devm_request_mem_region(&pdev->dev, res->start, if (!devm_request_mem_region(&pdev->dev, res->start,
res->end - res->start, pdev->name)) resource_size(res), pdev->name))
return -EBUSY; return -EBUSY;
adev = kzalloc(sizeof(*adev), GFP_KERNEL); adev = kzalloc(sizeof(*adev), GFP_KERNEL);
...@@ -1542,7 +1542,7 @@ static int __devinit iop_adma_probe(struct platform_device *pdev) ...@@ -1542,7 +1542,7 @@ static int __devinit iop_adma_probe(struct platform_device *pdev)
iop_chan->device = adev; iop_chan->device = adev;
iop_chan->mmr_base = devm_ioremap(&pdev->dev, res->start, iop_chan->mmr_base = devm_ioremap(&pdev->dev, res->start,
res->end - res->start); resource_size(res));
if (!iop_chan->mmr_base) { if (!iop_chan->mmr_base) {
ret = -ENOMEM; ret = -ENOMEM;
goto err_free_iop_chan; goto err_free_iop_chan;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册