Commit 8c649f4d authored by YueHaibing's avatar YueHaibing Committed by Mark Brown

spi: sun4i: 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-30-yuehaibing@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 338dd352
...@@ -428,7 +428,6 @@ static int sun4i_spi_probe(struct platform_device *pdev) ...@@ -428,7 +428,6 @@ static int sun4i_spi_probe(struct platform_device *pdev)
{ {
struct spi_master *master; struct spi_master *master;
struct sun4i_spi *sspi; struct sun4i_spi *sspi;
struct resource *res;
int ret = 0, irq; int ret = 0, irq;
master = spi_alloc_master(&pdev->dev, sizeof(struct sun4i_spi)); master = spi_alloc_master(&pdev->dev, sizeof(struct sun4i_spi));
...@@ -440,8 +439,7 @@ static int sun4i_spi_probe(struct platform_device *pdev) ...@@ -440,8 +439,7 @@ static int sun4i_spi_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, master); platform_set_drvdata(pdev, master);
sspi = spi_master_get_devdata(master); sspi = spi_master_get_devdata(master);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); sspi->base_addr = devm_platform_ioremap_resource(pdev, 0);
sspi->base_addr = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(sspi->base_addr)) { if (IS_ERR(sspi->base_addr)) {
ret = PTR_ERR(sspi->base_addr); ret = PTR_ERR(sspi->base_addr);
goto err_free_master; goto err_free_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