summaryrefslogtreecommitdiff
path: root/kern/console.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-05-31 23:51:54 +0200
committerRichard Braun <rbraun@sceen.net>2017-05-31 23:53:01 +0200
commit2bccef4f912ccfc1482b4b77b5a5892a714dd00a (patch)
tree68739bd47e2920b103ffc52138a676332ed3d01f /kern/console.h
parentfdfad361c69a29ffb1d8add4bc5506436288b95f (diff)
kern/console: optimize interrupt handling
Diffstat (limited to 'kern/console.h')
-rw-r--r--kern/console.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/console.h b/kern/console.h
index b967c0dd..7455a051 100644
--- a/kern/console.h
+++ b/kern/console.h
@@ -81,7 +81,7 @@ void console_register(struct console *console);
*
* Interrupts must be disabled when calling this function.
*/
-void console_intr(struct console *console, char c);
+void console_intr(struct console *console, const char *s);
/*
* Write/read a single character to all registered console devices.