]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/panel: sofef00: Clean up panel description after s6e3fc2x01 removal
authorDavid Heidelberg <david@ixit.cz>
Wed, 19 Nov 2025 14:21:28 +0000 (15:21 +0100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Wed, 19 Nov 2025 16:13:36 +0000 (17:13 +0100)
Remove leftover from s6e3fc2x01 support drop and clarify supported panel.

The Samsung SOFEF00 DDIC is used in multiple phones, so describe it
properly and generalize.

Fixes: e1eb7293ab41 ("drm/panel: samsung-sofef00: Drop s6e3fc2x01 support")
Signed-off-by: David Heidelberg <david@ixit.cz>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20251119-sofef00-rebuild-v3-3-6cd55471e84e@ixit.cz
drivers/gpu/drm/panel/Kconfig
drivers/gpu/drm/panel/panel-samsung-sofef00.c

index cab42c1474d145f8bbdf5dbc751747468102ffc0..76f6af819037652a5f824de0d71110393a9ec065 100644 (file)
@@ -894,16 +894,17 @@ config DRM_PANEL_SAMSUNG_S6E8AA5X01_AMS561RA01
          DSI protocol with 4 lanes.
 
 config DRM_PANEL_SAMSUNG_SOFEF00
-       tristate "Samsung sofef00/s6e3fc2x01 OnePlus 6/6T DSI cmd mode panels"
+       tristate "Samsung SOFEF00 DSI panel controller"
        depends on OF
        depends on DRM_MIPI_DSI
        depends on BACKLIGHT_CLASS_DEVICE
        select VIDEOMODE_HELPERS
        help
          Say Y or M here if you want to enable support for the Samsung AMOLED
-         command mode panels found in the OnePlus 6/6T smartphones.
+         panel SOFEF00 DDIC and connected panel.
+         Currently supported panels:
 
-         The panels are 2280x1080@60Hz and 2340x1080@60Hz respectively
+           Samsung AMS628NW01 (found in OnePlus 6, 1080x2280@60Hz)
 
 config DRM_PANEL_SEIKO_43WVF1G
        tristate "Seiko 43WVF1G panel"
index 064258217d50ad6f02d27a97f8aff2e298260d4b..c88574ea66e1c3cba86c2dc84281ec301b33c684 100644 (file)
@@ -252,7 +252,7 @@ static struct mipi_dsi_driver sofef00_panel_driver = {
        .probe = sofef00_panel_probe,
        .remove = sofef00_panel_remove,
        .driver = {
-               .name = "panel-oneplus6",
+               .name = "panel-samsung-sofef00",
                .of_match_table = sofef00_panel_of_match,
        },
 };
@@ -260,5 +260,5 @@ static struct mipi_dsi_driver sofef00_panel_driver = {
 module_mipi_dsi_driver(sofef00_panel_driver);
 
 MODULE_AUTHOR("Casey Connolly <casey.connolly@linaro.org>");
-MODULE_DESCRIPTION("DRM driver for Samsung AMOLED DSI panels found in OnePlus 6/6T phones");
+MODULE_DESCRIPTION("DRM driver for Samsung SOFEF00 DDIC");
 MODULE_LICENSE("GPL v2");