Skip to content

Commit a893976

Browse files
giuliobenettimripard
authored andcommitted
drm/sun4i: tcon: prevent tcon->panel dereference if NULL
If tcon->panel pointer is NULL, trying to dereference from it (i.e. tcon->panel->connector) will cause a null pointer dereference. Add tcon->panel null pointer check before calling sun4i_tcon0_mode_set_dithering(). Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Fixes: f11adce ("drm/sun4i: tcon: Add dithering support for RGB565/RGB666 LCD panels") Reviewed-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Link: https://patchwork.freedesktop.org/patch/msgid/20181005215951.99003-2-giulio.benetti@micronovasrl.com
1 parent 7f4cedd commit a893976

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/gpu/drm/sun4i/sun4i_tcon.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,8 @@ static void sun4i_tcon0_mode_set_rgb(struct sun4i_tcon *tcon,
491491
sun4i_tcon0_mode_set_common(tcon, mode);
492492

493493
/* Set dithering if needed */
494-
sun4i_tcon0_mode_set_dithering(tcon, tcon->panel->connector);
494+
if (tcon->panel)
495+
sun4i_tcon0_mode_set_dithering(tcon, tcon->panel->connector);
495496

496497
/* Adjust clock delay */
497498
clk_delay = sun4i_tcon_get_clk_delay(mode, 0);

0 commit comments

Comments
 (0)