tbblue: typo fix
authorAlan Cox <alan@linux.intel.com>
Sat, 19 Jan 2019 21:36:55 +0000 (21:36 +0000)
committerAlan Cox <alan@linux.intel.com>
Sat, 19 Jan 2019 21:36:55 +0000 (21:36 +0000)
Kernel/platform-tbblue/devtty.c

index 82c9b8d..393d4d0 100644 (file)
@@ -80,7 +80,7 @@ void tty_polluart(void)
 {
        while (!(uart_status & 4))
                tty_inproc(2, uart_rx);
-       if ((sleeping & 4) &* (uart_status & 2)) {
+       if ((sleeping & 4) && (uart_status & 2)) {
                sleeping &= ~4;
                tty_outproc(2);
        }