From: Casey Connolly Date: Wed, 19 Nov 2025 14:21:33 +0000 (+0100) Subject: drm/panel: sofef00: Initialise at 50% brightness X-Git-Url: https://gentwo.org/gitweb/?a=commitdiff_plain;h=e2e94464cf44f91c92eb631d609f812c7aef8840;p=linux%2F.git drm/panel: sofef00: Initialise at 50% brightness Initialising at max brightness is not necessary. Half brightness is much more comfortable. Signed-off-by: Casey Connolly Signed-off-by: David Heidelberg Reviewed-by: Neil Armstrong Signed-off-by: Neil Armstrong Link: https://patch.msgid.link/20251119-sofef00-rebuild-v3-8-6cd55471e84e@ixit.cz --- diff --git a/drivers/gpu/drm/panel/panel-samsung-sofef00.c b/drivers/gpu/drm/panel/panel-samsung-sofef00.c index 0d3ae0689a19..d1e5340d7e33 100644 --- a/drivers/gpu/drm/panel/panel-samsung-sofef00.c +++ b/drivers/gpu/drm/panel/panel-samsung-sofef00.c @@ -204,7 +204,7 @@ sofef00_create_backlight(struct mipi_dsi_device *dsi) struct device *dev = &dsi->dev; const struct backlight_properties props = { .type = BACKLIGHT_PLATFORM, - .brightness = 1023, + .brightness = 512, .max_brightness = 1023, };