mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
soc/fsl/bman: Use resource_size instead of computation
Use resource_size function on resource object instead of explicit computation. Generated by: scripts/coccinelle/api/resource_size.cocci Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Scott Wood <oss@buserror.net>
This commit is contained in:
parent
c9492b4bea
commit
d754442416
@ -181,8 +181,7 @@ static int fsl_bman_probe(struct platform_device *pdev)
|
||||
node->full_name);
|
||||
return -ENXIO;
|
||||
}
|
||||
bm_ccsr_start = devm_ioremap(dev, res->start,
|
||||
res->end - res->start + 1);
|
||||
bm_ccsr_start = devm_ioremap(dev, res->start, resource_size(res));
|
||||
if (!bm_ccsr_start)
|
||||
return -ENXIO;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user