drm: tilcdc: don't use devm_pinctrl_get_select_default() in probe
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Fri, 22 Sep 2023 07:37:13 +0000 (09:37 +0200)
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Wed, 10 Apr 2024 11:27:00 +0000 (14:27 +0300)
Since commit ab78029ecc34 ("drivers/pinctrl: grab default handles from
device core"), we can rely on device core for setting the default pins.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230922073714.6164-1-wsa+renesas@sang-engineering.com
drivers/gpu/drm/tilcdc/tilcdc_panel.c

index 9aefd010acde13d6838a5da40e62469f02a45321..68093d6b6b16a80a4a964f0399cc1702edf131e9 100644 (file)
@@ -6,7 +6,6 @@
 
 #include <linux/backlight.h>
 #include <linux/gpio/consumer.h>
-#include <linux/pinctrl/consumer.h>
 #include <linux/platform_device.h>
 
 #include <video/display_timing.h>
@@ -308,7 +307,6 @@ static int panel_probe(struct platform_device *pdev)
        struct backlight_device *backlight;
        struct panel_module *panel_mod;
        struct tilcdc_module *mod;
-       struct pinctrl *pinctrl;
        int ret;
 
        /* bail out early if no DT data: */
@@ -342,10 +340,6 @@ static int panel_probe(struct platform_device *pdev)
 
        tilcdc_module_init(mod, "panel", &panel_module_ops);
 
-       pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
-       if (IS_ERR(pinctrl))
-               dev_warn(&pdev->dev, "pins are not configured\n");
-
        panel_mod->timings = of_get_display_timings(node);
        if (!panel_mod->timings) {
                dev_err(&pdev->dev, "could not get panel timings\n");