Map the PPC44x GPIO register block through the platform device resource instead of reparsing the firmware node directly.
The GPIO node now probes as a platform device, so use the platform helper to keep resource handling aligned with the converted driver model and to report mapping failures with the platform device context. Assisted-by: Codex:GPT-5.5 Signed-off-by: Rosen Penev <[email protected]> --- drivers/gpio/gpio-ppc44x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/gpio-ppc44x.c b/drivers/gpio/gpio-ppc44x.c index 07b699cc4dd9..b30ca357ab74 100644 --- a/drivers/gpio/gpio-ppc44x.c +++ b/drivers/gpio/gpio-ppc44x.c @@ -182,7 +182,7 @@ static int ppc4xx_gpio_probe(struct platform_device *ofdev) if (!gc->label) return -ENOMEM; - chip->regs = devm_of_iomap(dev, np, 0, NULL); + chip->regs = devm_platform_ioremap_resource(ofdev, 0); if (IS_ERR(chip->regs)) return PTR_ERR(chip->regs); -- 2.54.0
