1
0

Merge "disp: msm: dsi: fix bl->raw_bd NULL pointer dereference"

Este cometimento está contido em:
qctecmdr
2024-05-15 01:20:51 -07:00
cometido por Gerrit - the friendly Code Review server
ascendente b1ccdd0067 e8c4aa25c5
cometimento 7affe06826

Ver ficheiro

@@ -670,7 +670,7 @@ static u32 dsi_panel_get_brightness(struct dsi_backlight_config *bl)
switch (bl->type) {
case DSI_BACKLIGHT_WLED:
/* Try to query the backlight level from the backlight device */
if (bd->ops && bd->ops->get_brightness)
if (bd && bd->ops && bd->ops->get_brightness)
cur_bl_level = bd->ops->get_brightness(bd);
break;
case DSI_BACKLIGHT_DCS: