From 32611417417466af6d277a85c280d0dc6ab02575 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 13 Dec 2023 14:19:41 -0500 Subject: kernel: tty: Cleanup comment width Signed-off-by: Ian Moffett --- sys/kern/tty.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'sys/kern') diff --git a/sys/kern/tty.c b/sys/kern/tty.c index bc55be5..bc6ea7a 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -53,8 +53,7 @@ __KERNEL_META("$Hyra$: tty.c, Ian Marco Moffett, " static TAILQ_HEAD(, tty) tty_list; /* - * Renders a char onto the - * TTY specified by `tty`. + * Renders a char onto the TTY specified by `tty`. */ static void tty_draw_char(struct tty *tty, char c, uint32_t fg, uint32_t bg) @@ -82,8 +81,7 @@ tty_draw_char(struct tty *tty, char c, uint32_t fg, uint32_t bg) } /* - * Draws a cursor onto - * the screen. + * Draws a cursor onto the screen. * * Call with TTY locked. */ @@ -250,8 +248,7 @@ tty_putch(struct tty *tty, int c) } /* - * Flushes a TTY specified - * by `tty`. + * Flushes a TTY specified by `tty`. * * Call with TTY locked. */ -- cgit v1.2.3