summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Connolly <casey.connolly@linaro.org>2025-11-19 15:21:33 +0100
committerNeil Armstrong <neil.armstrong@linaro.org>2025-11-19 17:13:39 +0100
commite2e94464cf44f91c92eb631d609f812c7aef8840 (patch)
tree217d5a9eccef730fea3326ba08506f19e0518510
parent1e534a56578bbea59165c3507d2b967f29771792 (diff)
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 <casey.connolly@linaro.org> 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-8-6cd55471e84e@ixit.cz
-rw-r--r--drivers/gpu/drm/panel/panel-samsung-sofef00.c2
1 files changed, 1 insertions, 1 deletions
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,
};