Commit 4585bb92 authored by YueHaibing's avatar YueHaibing Committed by Mark Brown

spi: cadence: use devm_platform_ioremap_resource() to simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190904135918.25352-9-yuehaibing@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent e364c8c2
...@@ -474,7 +474,6 @@ static int cdns_spi_probe(struct platform_device *pdev) ...@@ -474,7 +474,6 @@ static int cdns_spi_probe(struct platform_device *pdev)
int ret = 0, irq; int ret = 0, irq;
struct spi_master *master; struct spi_master *master;
struct cdns_spi *xspi; struct cdns_spi *xspi;
struct resource *res;
u32 num_cs; u32 num_cs;
master = spi_alloc_master(&pdev->dev, sizeof(*xspi)); master = spi_alloc_master(&pdev->dev, sizeof(*xspi));
...@@ -485,8 +484,7 @@ static int cdns_spi_probe(struct platform_device *pdev) ...@@ -485,8 +484,7 @@ static int cdns_spi_probe(struct platform_device *pdev)
master->dev.of_node = pdev->dev.of_node; master->dev.of_node = pdev->dev.of_node;
platform_set_drvdata(pdev, master); platform_set_drvdata(pdev, master);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); xspi->regs = devm_platform_ioremap_resource(pdev, 0);
xspi->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(xspi->regs)) { if (IS_ERR(xspi->regs)) {
ret = PTR_ERR(xspi->regs); ret = PTR_ERR(xspi->regs);
goto remove_master; goto remove_master;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment