Skip to content

Commit

Permalink
fbdev/ssd1307fb: clear screen in probe
Browse files Browse the repository at this point in the history
SSD1306 does not clear the panel's framebuffer automatically, even if a
HW reset happens, so we need to do that at probe time before enabling
the panel.

Cc: Rob Herring <robh+dt@kernel.org>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Benoît Cousson <bcousson@baylibre.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Jyri Sarha <jsarha@ti.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
  • Loading branch information
tomba authored and bzolnier committed Feb 8, 2017
1 parent ba14301 commit 6e37682
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/video/fbdev/ssd1307fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,8 @@ static int ssd1307fb_init(struct ssd1307fb_par *par)
if (ret < 0)
return ret;

/* Clear the screen if we could not give reset at probe time */
if (!par->reset)
ssd1307fb_update_display(par);
/* Clear the screen */
ssd1307fb_update_display(par);

/* Turn on the display */
ret = ssd1307fb_write_cmd(par->client, SSD1307FB_DISPLAY_ON);
Expand Down

0 comments on commit 6e37682

Please sign in to comment.