Skip to content

Commit b6821b0

Browse files
redbrain17gregkh
authored andcommitted
staging: fbtft: fb_st7789v: reset display before initialization
In rare cases the display is flipped or mirrored. This was observed more often in a low temperature environment. A clean reset on init_display() should help to get registers in a sane state. Fixes: ef8f317 (staging: fbtft: use init function instead of init sequence) Cc: stable@vger.kernel.org Signed-off-by: Oliver Graute <oliver.graute@kococonnector.com> Link: https://lore.kernel.org/r/20220210085322.15676-1-oliver.graute@kococonnector.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 754e0b0 commit b6821b0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/staging/fbtft/fb_st7789v.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ static int init_display(struct fbtft_par *par)
144144
{
145145
int rc;
146146

147+
par->fbtftops.reset(par);
148+
147149
rc = init_tearing_effect_line(par);
148150
if (rc)
149151
return rc;

0 commit comments

Comments
 (0)