fbdev: ssd1307fb: fix logical error
The logical not needs to be done after the bit masking. Fixes: a3998fe03e87 ("fbdev: ssd1307fb: Unify init code and obtain hw specific bits from DT") Signed-off-by: Thomas Niederprüm <niederp@physik.uni-kl.de> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
ee62eddb1a
commit
5e47932be8
@ -368,7 +368,7 @@ static int ssd1307fb_init(struct ssd1307fb_par *par)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
compins = 0x02 | (!par->com_seq & 0x1) << 4
|
||||
compins = 0x02 | !(par->com_seq & 0x1) << 4
|
||||
| (par->com_lrremap & 0x1) << 5;
|
||||
ret = ssd1307fb_write_cmd(par->client, compins);
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user