summaryrefslogtreecommitdiff
path: root/kern/printk.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-08-15 20:55:19 +0200
committerRichard Braun <rbraun@sceen.net>2014-08-15 20:55:19 +0200
commit40502c5f7465300b2bc0cb44325db38b23449deb (patch)
treea820b4d136c20b70e25fc8e2652a08e27c8331fa /kern/printk.h
parent6d1f6eefcee5fad60b5b674135996414ecc17a2d (diff)
kern/printk: don't use static spin lock initializer
Diffstat (limited to 'kern/printk.h')
-rw-r--r--kern/printk.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/printk.h b/kern/printk.h
index c86384bd..02173b33 100644
--- a/kern/printk.h
+++ b/kern/printk.h
@@ -33,5 +33,6 @@
int printk(const char *format, ...) __format_printf(1, 2);
int vprintk(const char *format, va_list ap) __format_printf(1, 0);
+void printk_setup(void);
#endif /* _KERN_PRINTK_H */