trs80: fix dumb bug when I added the input patch
authorAlan Cox <alan@linux.intel.com>
Sun, 15 Jul 2018 22:02:37 +0000 (23:02 +0100)
committerAlan Cox <alan@linux.intel.com>
Sun, 15 Jul 2018 22:02:37 +0000 (23:02 +0100)
Reported by Jenz Guenther

Kernel/platform-trs80/devtty.c

index 1eeb7c0..249ea2b 100644 (file)
@@ -319,7 +319,7 @@ static void keydecode(void)
                    vt_inproc(inputtty + 1, c);
                    break;
                 case 1:
-                    if (!input_meta_match(c)) {
+                    if (!input_match_meta(c)) {
                        vt_inproc(inputtty + 1, c);
                        break;
                     }