projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae91a43
)
spi: fsl-spi: use devm_platform_ioremap_resource() to simplify code
author
YueHaibing
<yuehaibing@huawei.com>
Wed, 4 Sep 2019 13:59:18 +0000
(21:59 +0800)
committer
Mark Brown
<broonie@kernel.org>
Wed, 4 Sep 2019 16:24:26 +0000
(17:24 +0100)
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-37-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-fsl-cpm.c
patch
|
blob
|
history
diff --git
a/drivers/spi/spi-fsl-cpm.c
b/drivers/spi/spi-fsl-cpm.c
index e967ac564761ba106987f12ce15e454865b7b4de..858f0544289e6a7211c2e85fc1d82672923401a7 100644
(file)
--- a/
drivers/spi/spi-fsl-cpm.c
+++ b/
drivers/spi/spi-fsl-cpm.c
@@
-305,12
+305,10
@@
int fsl_spi_cpm_init(struct mpc8xxx_spi *mspi)
}
if (mspi->flags & SPI_CPM1) {
- struct resource *res;
void *pram;
- res = platform_get_resource(to_platform_device(dev),
- IORESOURCE_MEM, 1);
- pram = devm_ioremap_resource(dev, res);
+ pram = devm_platform_ioremap_resource(to_platform_device(dev),
+ 1);
if (IS_ERR(pram))
mspi->pram = NULL;
else