trs80: correct size of shift kbd map so we don't waste memory
authorAlan Cox <alan@linux.intel.com>
Sun, 4 Jan 2015 14:13:33 +0000 (14:13 +0000)
committerAlan Cox <alan@linux.intel.com>
Sun, 4 Jan 2015 14:13:33 +0000 (14:13 +0000)
Kernel/platform-trs80/devtty.c

index 3b5c4d9..54b5c2b 100644 (file)
@@ -160,7 +160,7 @@ static uint8_t keyboard[8][8] = {
        { 0, 0, 0, 0, 0xF1, 0xF2, 0xF3, 0 }
 };
 
-static uint8_t shiftkeyboard[8][10] = {
+static uint8_t shiftkeyboard[8][8] = {
        {'@', 'A', 'B', 'C', 'D', 'E', 'F', 'G' },
        {'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O' },
        {'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W' },