aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2023-12-13 14:19:41 -0500
committerIan Moffett <ian@osmora.org>2023-12-13 14:20:01 -0500
commit32611417417466af6d277a85c280d0dc6ab02575 (patch)
tree50fc9616cadeab649d20a9eaf1b162654de3c551
parentc2b1e50e741ae5ae2b8ee8b45e8b6583ca29eee3 (diff)
kernel: tty: Cleanup comment width
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--sys/kern/tty.c9
1 files changed, 3 insertions, 6 deletions
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.
*/