mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
i2c: qcom-cci:Use devm_platform_get_and_ioremap_resource()
Convert platform_get_resource(), devm_ioremap_resource() to a single call to devm_platform_get_and_ioremap_resource(), as this is exactly what this function does. Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> Acked-by: Robert Foss <rfoss@kernel.org> Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
committed by
Wolfram Sang
parent
06e9895782
commit
fdbd69549b
@@ -581,8 +581,7 @@ static int cci_probe(struct platform_device *pdev)
|
||||
|
||||
/* Memory */
|
||||
|
||||
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
cci->base = devm_ioremap_resource(dev, r);
|
||||
cci->base = devm_platform_get_and_ioremap_resource(pdev, 0, &r);
|
||||
if (IS_ERR(cci->base))
|
||||
return PTR_ERR(cci->base);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user