Message ID | 20220928145852.1882221-1-yangyingliang@huawei.com |
---|---|
State | Accepted |
Commit | a008ae9f8336d79df589eb343a38080a4b98340d |
Headers | show |
Series | [-next,1/2] spi: bcm63xx: Use devm_platform_get_and_ioremap_resource() | expand |
On Wed, 28 Sep 2022 22:58:51 +0800, Yang Yingliang wrote: > Use the devm_platform_get_and_ioremap_resource() helper instead of calling > platform_get_resource() and devm_ioremap_resource() separately. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/2] spi: bcm63xx: Use devm_platform_get_and_ioremap_resource() commit: a008ae9f8336d79df589eb343a38080a4b98340d [2/2] spi: cadence-quadspi: Use devm_platform_{get_and_}ioremap_resource() commit: 4e12ef2b2e3f65c4fba895262363c499476848a1 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
diff --git a/drivers/spi/spi-bcm63xx.c b/drivers/spi/spi-bcm63xx.c index 80fa0ef8909c..3686d78c44a6 100644 --- a/drivers/spi/spi-bcm63xx.c +++ b/drivers/spi/spi-bcm63xx.c @@ -547,8 +547,7 @@ static int bcm63xx_spi_probe(struct platform_device *pdev) platform_set_drvdata(pdev, master); bs->pdev = pdev; - r = platform_get_resource(pdev, IORESOURCE_MEM, 0); - bs->regs = devm_ioremap_resource(&pdev->dev, r); + bs->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &r); if (IS_ERR(bs->regs)) { ret = PTR_ERR(bs->regs); goto out_err;
Use the devm_platform_get_and_ioremap_resource() helper instead of calling platform_get_resource() and devm_ioremap_resource() separately. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> --- drivers/spi/spi-bcm63xx.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)