From 0c9c4a6fc7a647c2bf86162d6a468e48ddbd6ce6 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 14 Jul 2018 16:43:00 +0100 Subject: [PATCH] tty: prototypes for the new helper --- Kernel/include/tty.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/include/tty.h b/Kernel/include/tty.h index c7f2f2aa..72096762 100644 --- a/Kernel/include/tty.h +++ b/Kernel/include/tty.h @@ -258,6 +258,7 @@ extern void tty_sleeping(uint8_t minor); extern void tty_putc(uint8_t minor, unsigned char c); extern void tty_setup(uint8_t minor); extern int tty_carrier(uint8_t minor); +extern void tty_data_consumed(uint8_t minor); /* PTY pieces: 8 ptys both sides of */ #ifdef CONFIG_PTY_DEV #define PTY_BUFFERS \ -- 2.34.1