[PATCH] include/printk: fix level of pr_err and pr_warning

Hubert Feurstein h.feurstein at gmail.com
Fri Jul 19 09:41:41 EDT 2013


The level of pr_err and pr_warning were interchanged.

Signed-off-by: Hubert Feurstein <h.feurstein at gmail.com>
---
 include/printk.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/printk.h b/include/printk.h
index 3cd7335..86bf208 100644
--- a/include/printk.h
+++ b/include/printk.h
@@ -56,8 +56,8 @@ int dev_printf(const struct device_d *dev, const char *format, ...)
 #define pr_emerg(fmt, arg...)	__pr_printk(0, pr_fmt(fmt), ##arg)
 #define pr_alert(fmt, arg...)	__pr_printk(1, pr_fmt(fmt), ##arg)
 #define pr_crit(fmt, arg...)	__pr_printk(2, pr_fmt(fmt), ##arg)
-#define pr_warning(fmt, arg...)	__pr_printk(3, pr_fmt(fmt), ##arg)
-#define pr_err(fmt, arg...)	__pr_printk(4, pr_fmt(fmt), ##arg)
+#define pr_err(fmt, arg...)	__pr_printk(3, pr_fmt(fmt), ##arg)
+#define pr_warning(fmt, arg...)	__pr_printk(4, pr_fmt(fmt), ##arg)
 #define pr_notice(fmt, arg...)	__pr_printk(5, pr_fmt(fmt), ##arg)
 #define pr_info(fmt, arg...)	__pr_printk(6, pr_fmt(fmt), ##arg)
 #define pr_debug(fmt, arg...)	__pr_printk(7, pr_fmt(fmt), ##arg)
-- 
1.7.9.5




More information about the barebox mailing list