aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc/include/printk.h
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-10-28 19:38:58 +0000
committerStefan Reinauer <stepan@openbios.org>2009-10-28 19:38:58 +0000
commite696942cfc6d970d9a774815cc81bf1d771c857b (patch)
tree810516e157f08970fc6e9b2b5c07d1c6f176726d /src/arch/ppc/include/printk.h
parent8d09e231fed1395b82227ce374dca4be32e77845 (diff)
Drop remainder of PPC port
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4884 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/ppc/include/printk.h')
-rw-r--r--src/arch/ppc/include/printk.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/arch/ppc/include/printk.h b/src/arch/ppc/include/printk.h
deleted file mode 100644
index dac99a8ba6..0000000000
--- a/src/arch/ppc/include/printk.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _PRINTK_H
-#define _PRINTK_H
-#include <console/loglevel.h>
-
-extern int do_printk(int, const char *, ...);
-
-#define printk_emerg(fmt, arg...) do_printk(BIOS_EMERG ,fmt, ##arg)
-#define printk_alert(fmt, arg...) do_printk(BIOS_ALERT ,fmt, ##arg)
-#define printk_crit(fmt, arg...) do_printk(BIOS_CRIT ,fmt, ##arg)
-#define printk_err(fmt, arg...) do_printk(BIOS_ERR ,fmt, ##arg)
-#define printk_warning(fmt, arg...) do_printk(BIOS_WARNING ,fmt, ##arg)
-#define printk_notice(fmt, arg...) do_printk(BIOS_NOTICE ,fmt, ##arg)
-#define printk_info(fmt, arg...) do_printk(BIOS_INFO ,fmt, ##arg)
-#define printk_debug(fmt, arg...) do_printk(BIOS_DEBUG ,fmt, ##arg)
-#define printk_spew(fmt, arg...) do_printk(BIOS_SPEW ,fmt, ##arg)
-
-#endif /* _PRINTK_H */
-