Commit 43a5baa6 authored by YueHaibing's avatar YueHaibing Committed by Mark Brown

spi: fsl-spi: 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-37-yuehaibing@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent ae91a439
...@@ -305,12 +305,10 @@ int fsl_spi_cpm_init(struct mpc8xxx_spi *mspi) ...@@ -305,12 +305,10 @@ int fsl_spi_cpm_init(struct mpc8xxx_spi *mspi)
} }
if (mspi->flags & SPI_CPM1) { if (mspi->flags & SPI_CPM1) {
struct resource *res;
void *pram; void *pram;
res = platform_get_resource(to_platform_device(dev), pram = devm_platform_ioremap_resource(to_platform_device(dev),
IORESOURCE_MEM, 1); 1);
pram = devm_ioremap_resource(dev, res);
if (IS_ERR(pram)) if (IS_ERR(pram))
mspi->pram = NULL; mspi->pram = NULL;
else else
......
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