mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-16 22:51:32 +00:00
staging: fbtft: fb_ssd1306: Fix checkpatch warning
Fix checkpatch.pl warning: Block comments use * on subsequent lines Block comments use a trailing */ on a separate line Signed-off-by: Anson Jacob <ansonjacob.aj@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b2a8bb7749
commit
d0b6ecbedd
@ -27,15 +27,15 @@
|
||||
#define HEIGHT 64
|
||||
|
||||
/*
|
||||
write_reg() caveat:
|
||||
|
||||
This doesn't work because D/C has to be LOW for both values:
|
||||
write_reg(par, val1, val2);
|
||||
|
||||
Do it like this:
|
||||
write_reg(par, val1);
|
||||
write_reg(par, val2);
|
||||
*/
|
||||
* write_reg() caveat:
|
||||
*
|
||||
* This doesn't work because D/C has to be LOW for both values:
|
||||
* write_reg(par, val1, val2);
|
||||
*
|
||||
* Do it like this:
|
||||
* write_reg(par, val1);
|
||||
* write_reg(par, val2);
|
||||
*/
|
||||
|
||||
/* Init sequence taken from the Adafruit SSD1306 Arduino library */
|
||||
static int init_display(struct fbtft_par *par)
|
||||
@ -113,8 +113,9 @@ static int init_display(struct fbtft_par *par)
|
||||
write_reg(par, 0xA4);
|
||||
|
||||
/* Set Normal Display
|
||||
0 in RAM: OFF in display panel
|
||||
1 in RAM: ON in display panel */
|
||||
* 0 in RAM: OFF in display panel
|
||||
* 1 in RAM: ON in display panel
|
||||
*/
|
||||
write_reg(par, 0xA6);
|
||||
|
||||
/* Set Display ON */
|
||||
|
Loading…
x
Reference in New Issue
Block a user