Skip to content

Commit 69d286c

Browse files
Yang Libroonie
authored andcommitted
spi: tegra210-quad: Use devm_platform_get_and_ioremap_resource()
According to commit 890cc39 ("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> Link: https://lore.kernel.org/r/20230328061031.70140-2-yang.lee@linux.alibaba.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 05c79f7 commit 69d286c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/spi/spi-tegra210-quad.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,8 +1552,7 @@ static int tegra_qspi_probe(struct platform_device *pdev)
15521552

15531553
tqspi->soc_data = device_get_match_data(&pdev->dev);
15541554
master->num_chipselect = tqspi->soc_data->cs_count;
1555-
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1556-
tqspi->base = devm_ioremap_resource(&pdev->dev, r);
1555+
tqspi->base = devm_platform_get_and_ioremap_resource(pdev, 0, &r);
15571556
if (IS_ERR(tqspi->base))
15581557
return PTR_ERR(tqspi->base);
15591558

0 commit comments

Comments
 (0)