mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 10:06:52 +07:00
misc: panel: Fix LCD_FLAG_F/LCD_FLAG_N exchange
LCD_FLAG_F is the font flag, LCD_FLAG_N is the two-lines flag. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
90beaf6422
commit
84a1ed0407
@ -1278,9 +1278,10 @@ static inline int handle_lcd_special_code(void)
|
||||
lcd_write_cmd(LCD_CMD_FUNCTION_SET
|
||||
| LCD_CMD_DATA_LEN_8BITS
|
||||
| ((lcd.flags & LCD_FLAG_F)
|
||||
? LCD_CMD_TWO_LINES : 0)
|
||||
| ((lcd.flags & LCD_FLAG_N)
|
||||
? LCD_CMD_FONT_5X10_DOTS
|
||||
: 0)
|
||||
| ((lcd.flags & LCD_FLAG_N)
|
||||
? LCD_CMD_TWO_LINES
|
||||
: 0));
|
||||
/* check whether L flag was changed */
|
||||
else if ((oldflags ^ lcd.flags) & (LCD_FLAG_L)) {
|
||||
|
Loading…
Reference in New Issue
Block a user