Commit 4c6f537a authored by YueHaibing's avatar YueHaibing Committed by Mark Brown

spi: nuc900: 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-21-yuehaibing@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent dcbceb6d
...@@ -327,7 +327,6 @@ static int nuc900_spi_probe(struct platform_device *pdev) ...@@ -327,7 +327,6 @@ static int nuc900_spi_probe(struct platform_device *pdev)
{ {
struct nuc900_spi *hw; struct nuc900_spi *hw;
struct spi_master *master; struct spi_master *master;
struct resource *res;
int err = 0; int err = 0;
master = spi_alloc_master(&pdev->dev, sizeof(struct nuc900_spi)); master = spi_alloc_master(&pdev->dev, sizeof(struct nuc900_spi));
...@@ -358,8 +357,7 @@ static int nuc900_spi_probe(struct platform_device *pdev) ...@@ -358,8 +357,7 @@ static int nuc900_spi_probe(struct platform_device *pdev)
hw->bitbang.chipselect = nuc900_spi_chipsel; hw->bitbang.chipselect = nuc900_spi_chipsel;
hw->bitbang.txrx_bufs = nuc900_spi_txrx; hw->bitbang.txrx_bufs = nuc900_spi_txrx;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); hw->regs = devm_platform_ioremap_resource(pdev, 0);
hw->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(hw->regs)) { if (IS_ERR(hw->regs)) {
err = PTR_ERR(hw->regs); err = PTR_ERR(hw->regs);
goto err_pdata; goto err_pdata;
......
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