summaryrefslogtreecommitdiff
path: root/src/include/console/loglevel.h
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-03-23 13:23:40 +0000
committerStefan Reinauer <stepan@openbios.org>2010-03-23 13:23:40 +0000
commitf0aa09b51b1874b8d52574d18a497162eda9cdf5 (patch)
tree3ea0d9eac449646489bb5f70b5c919664a4903fb /src/include/console/loglevel.h
parent0b2cda82b460098768d74dc4e01df00f78c60e41 (diff)
downloadcoreboot-f0aa09b51b1874b8d52574d18a497162eda9cdf5.tar.xz
fix newly introduced printk_foo warnings..
Interesting enough, console_printk was only used in a single place and duplicated a large part of console.h which is included in the same place. Thus, just drop console_printk.c and we're one down with console complexity Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5274 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/console/loglevel.h')
-rw-r--r--src/include/console/loglevel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/console/loglevel.h b/src/include/console/loglevel.h
index 8e6a7c4866..f306744d9e 100644
--- a/src/include/console/loglevel.h
+++ b/src/include/console/loglevel.h
@@ -15,6 +15,7 @@
#define BIOS_NOTICE 5 /* normal but significant condition */
#define BIOS_INFO 6 /* informational */
#define BIOS_DEBUG 7 /* debug-level messages */
-#define BIOS_SPEW 8 /* Way too many details */
+#define BIOS_SPEW 8 /* way too many details */
+#define BIOS_NEVER 9 /* these messages are never printed */
#endif /* LOGLEVEL_H */