aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-rb4xx.c
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2019-09-04 21:59:06 +0800
committerMark Brown <broonie@kernel.org>2019-09-04 17:21:21 +0100
commit7d4c208326a0eae8eb296d2c35e1eed59accd9e5 (patch)
tree0369a945d3e7a99be6bac9deb041cbb7c4131773 /drivers/spi/spi-rb4xx.c
parentspi: spi-qcom-qspi: use devm_platform_ioremap_resource() to simplify code (diff)
downloadlinux-dev-7d4c208326a0eae8eb296d2c35e1eed59accd9e5.tar.xz
linux-dev-7d4c208326a0eae8eb296d2c35e1eed59accd9e5.zip
spi: rb4xx: 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: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Link: https://lore.kernel.org/r/20190904135918.25352-25-yuehaibing@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-rb4xx.c')
-rw-r--r--drivers/spi/spi-rb4xx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/spi-rb4xx.c b/drivers/spi/spi-rb4xx.c
index 51f03d977ad6..4c9620e0d18c 100644
--- a/drivers/spi/spi-rb4xx.c
+++ b/drivers/spi/spi-rb4xx.c
@@ -135,12 +135,10 @@ static int rb4xx_spi_probe(struct platform_device *pdev)
struct spi_master *master;
struct clk *ahb_clk;
struct rb4xx_spi *rbspi;
- struct resource *r;
int err;
void __iomem *spi_base;
- r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- spi_base = devm_ioremap_resource(&pdev->dev, r);
+ spi_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(spi_base))
return PTR_ERR(spi_base);