From 5d13f946d78b321d315b41d257921660b13c7478 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 19 Jan 2019 21:22:56 +0000 Subject: [PATCH] v68: static tty buffers --- Kernel/platform-v68/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-v68/devtty.c b/Kernel/platform-v68/devtty.c index b906411f..7a70bdd1 100644 --- a/Kernel/platform-v68/devtty.c +++ b/Kernel/platform-v68/devtty.c @@ -9,7 +9,7 @@ volatile uint8_t *uart_data = (volatile uint8_t *)0xF03000; /* UART data */ volatile uint8_t *uart_status = (volatile uint8_t *)0xF03010; /* UART status */ -unsigned char tbuf1[TTYSIZ]; +static unsigned char tbuf1[TTYSIZ]; struct s_queue ttyinq[NUM_DEV_TTY + 1] = { /* ttyinq[0] is never used */ {NULL, NULL, NULL, 0, 0, 0}, -- 2.34.1