Explorar o código

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>
Wei Yongjun %!s(int64=9) %!d(string=hai) anos
pai
achega
d754442416
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      drivers/soc/fsl/qbman/bman_ccsr.c

+ 1 - 2
drivers/soc/fsl/qbman/bman_ccsr.c

@@ -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;