* [PATCH -next] spi: imx: Use devm_platform_get_and_ioremap_resource()
@ 2023-03-28 6:26 Yang Li
2023-04-04 15:21 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2023-03-28 6:26 UTC (permalink / raw)
To: broonie
Cc: shawnguo, s.hauer, kernel, festevam, linux-imx, linux-spi,
linux-arm-kernel, linux-kernel, Yang Li
According to commit 890cc39a8799 ("drivers: provide
devm_platform_get_and_ioremap_resource()"), convert
platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
drivers/spi/spi-imx.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c
index 1f2c7ad65ec8..9f8cee200e7c 100644
--- a/drivers/spi/spi-imx.c
+++ b/drivers/spi/spi-imx.c
@@ -1753,8 +1753,7 @@ static int spi_imx_probe(struct platform_device *pdev)
init_completion(&spi_imx->xfer_done);
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- spi_imx->base = devm_ioremap_resource(&pdev->dev, res);
+ spi_imx->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
if (IS_ERR(spi_imx->base)) {
ret = PTR_ERR(spi_imx->base);
goto out_controller_put;
--
2.20.1.7.g153144c
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH -next] spi: imx: Use devm_platform_get_and_ioremap_resource()
2023-03-28 6:26 [PATCH -next] spi: imx: Use devm_platform_get_and_ioremap_resource() Yang Li
@ 2023-04-04 15:21 ` Mark Brown
0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2023-04-04 15:21 UTC (permalink / raw)
To: Yang Li
Cc: shawnguo, s.hauer, kernel, festevam, linux-imx, linux-spi,
linux-arm-kernel, linux-kernel
On Tue, 28 Mar 2023 14:26:00 +0800, Yang Li wrote:
> According to commit 890cc39a8799 ("drivers: provide
> devm_platform_get_and_ioremap_resource()"), convert
> platform_get_resource(), devm_ioremap_resource() to a single
> call to devm_platform_get_and_ioremap_resource(), as this is exactly
> what this function does.
>
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/1] spi: imx: Use devm_platform_get_and_ioremap_resource()
commit: d909451ce1db59ba0281fc65ee03d8933d623574
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-04-04 15:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-28 6:26 [PATCH -next] spi: imx: Use devm_platform_get_and_ioremap_resource() Yang Li
2023-04-04 15:21 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).