Merge "disp: msm: dsi: fix bl->raw_bd NULL pointer dereference"
This commit is contained in:

committed by
Gerrit - the friendly Code Review server

commit
7affe06826
@@ -670,7 +670,7 @@ static u32 dsi_panel_get_brightness(struct dsi_backlight_config *bl)
|
|||||||
switch (bl->type) {
|
switch (bl->type) {
|
||||||
case DSI_BACKLIGHT_WLED:
|
case DSI_BACKLIGHT_WLED:
|
||||||
/* Try to query the backlight level from the backlight device */
|
/* 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);
|
cur_bl_level = bd->ops->get_brightness(bd);
|
||||||
break;
|
break;
|
||||||
case DSI_BACKLIGHT_DCS:
|
case DSI_BACKLIGHT_DCS:
|
||||||
|
Reference in New Issue
Block a user