aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/auxdisplay
diff options
context:
space:
mode:
authorRobert Abel <rabel@robertabel.eu>2018-02-26 00:54:29 +0100
committerMiguel Ojeda <miguel.ojeda.sandonis@gmail.com>2018-04-12 19:02:43 +0200
commit99b9b4909c72e06b46e2fdf083c96b585cb84adb (patch)
tree9ad8cba4b305eb8ee5ef441b825fc60303725250 /drivers/auxdisplay
parentauxdisplay: charlcd: replace octal literal with form-feed escape sequence (diff)
downloadlinux-dev-99b9b4909c72e06b46e2fdf083c96b585cb84adb.tar.xz
linux-dev-99b9b4909c72e06b46e2fdf083c96b585cb84adb.zip
auxdisplay: charlcd: fix two-line command ^[[LN not marked as processed
Signed-off-by: Robert Abel <rabel@robertabel.eu> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
Diffstat (limited to 'drivers/auxdisplay')
-rw-r--r--drivers/auxdisplay/charlcd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/auxdisplay/charlcd.c b/drivers/auxdisplay/charlcd.c
index ee39d1a85bf7..0246ff77e772 100644
--- a/drivers/auxdisplay/charlcd.c
+++ b/drivers/auxdisplay/charlcd.c
@@ -363,6 +363,7 @@ static inline int handle_lcd_special_code(struct charlcd *lcd)
break;
case 'N': /* Two Lines */
priv->flags |= LCD_FLAG_N;
+ processed = 1;
break;
case 'l': /* Shift Cursor Left */
if (priv->addr.x > 0) {