dragon: do char mapping in the right spot
authorAlan Cox <alan@etchedpixels.co.uk>
Thu, 27 Nov 2014 01:04:35 +0000 (01:04 +0000)
committerAlan Cox <alan@etchedpixels.co.uk>
Thu, 27 Nov 2014 01:04:35 +0000 (01:04 +0000)
Kernel/platform-dragon/devtty.c

index 537d582..bf2d796 100644 (file)
@@ -47,9 +47,6 @@ bool tty_writeready(uint8_t minor)
 void tty_putc(uint8_t minor, unsigned char c)
 {
        if (minor == 1) {
-               /* FIXME: Once we do machine types the later COCO2 isn't
-                  so brainless. Or we should perhaps use bitmap modes */
-               c &= 0x5f;
                vtoutput(&c, 1);
        } else
                *uart_data = c; /* Data */