From: Geert Uytterhoeven Date: Tue, 21 Mar 2023 16:28:00 +0000 (+0100) Subject: pinctrl: renesas: core: Drop unneeded #ifdef CONFIG_OF X-Git-Tag: v6.6.7~2920^2~22^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45e6cc8ef1cd8576707506a4eeffef858e4a1a83;p=platform%2Fkernel%2Flinux-starfive.git pinctrl: renesas: core: Drop unneeded #ifdef CONFIG_OF As the of_node member of struct device always exists, and there is a dummy of of_device_get_match_data() for the !CONFIG_OF case, there is no longer a need to protect code using these interfaces with an #ifdef. Signed-off-by: Geert Uytterhoeven Reviewed-by: Wolfram Sang Link: https://lore.kernel.org/r/55d72ce46b43ec2f41681cb5ba7ca7fcebdb98d1.1679416005.git.geert+renesas@glider.be --- diff --git a/drivers/pinctrl/renesas/core.c b/drivers/pinctrl/renesas/core.c index 17f70be..0c8d081 100644 --- a/drivers/pinctrl/renesas/core.c +++ b/drivers/pinctrl/renesas/core.c @@ -1304,11 +1304,9 @@ static int sh_pfc_probe(struct platform_device *pdev) struct sh_pfc *pfc; int ret; -#ifdef CONFIG_OF if (pdev->dev.of_node) info = of_device_get_match_data(&pdev->dev); else -#endif info = (const void *)platform_get_device_id(pdev)->driver_data; pfc = devm_kzalloc(&pdev->dev, sizeof(*pfc), GFP_KERNEL);