dma: mv_xor: use resource_size()
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Dan Williams <dan.j.williams@intel.com> (supporter:ASYNCHRONOUS TRAN...) Cc: Vinod Koul <vinod.koul@intel.com> (supporter:DMA GENERIC OFFLO...) Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
Родитель
a03a202e95
Коммит
4de1ba155b
|
@ -1305,7 +1305,7 @@ static int mv_xor_shared_probe(struct platform_device *pdev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
msp->xor_base = devm_ioremap(&pdev->dev, res->start,
|
msp->xor_base = devm_ioremap(&pdev->dev, res->start,
|
||||||
res->end - res->start + 1);
|
resource_size(res));
|
||||||
if (!msp->xor_base)
|
if (!msp->xor_base)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
|
@ -1314,7 +1314,7 @@ static int mv_xor_shared_probe(struct platform_device *pdev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
msp->xor_high_base = devm_ioremap(&pdev->dev, res->start,
|
msp->xor_high_base = devm_ioremap(&pdev->dev, res->start,
|
||||||
res->end - res->start + 1);
|
resource_size(res));
|
||||||
if (!msp->xor_high_base)
|
if (!msp->xor_high_base)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче