Title: [9152] trunk/arch/blackfin/kernel/bfin_gpio.c: remove KERN_ERR in pr_err messages
Revision
9152
Author
steven.miao
Date
2010-09-20 02:43:09 -0400 (Mon, 20 Sep 2010)

Log Message

remove KERN_ERR in pr_err messages

Modified Paths


Diff

Modified: trunk/arch/blackfin/kernel/bfin_gpio.c (9151 => 9152)


--- trunk/arch/blackfin/kernel/bfin_gpio.c	2010-09-20 06:29:08 UTC (rev 9151)
+++ trunk/arch/blackfin/kernel/bfin_gpio.c	2010-09-20 06:43:09 UTC (rev 9152)
@@ -281,7 +281,7 @@
 				else
 					pfunc = (pfunc >> offset) & 1;
 				if (pfunc != function) {
-					pr_err(KERN_ERR "pin grounp conflict! request pin %d func %d conflict with pin %d func %d\n",
+					pr_err("pin grounp conflict! request pin %d func %d conflict with pin %d func %d\n",
 						ident, function,
 						m, pfunc);
 					return -EINVAL;
@@ -358,7 +358,7 @@
 				pfunc = *port_mux[gpio_bank(ident)];
 				pfunc = (pfunc >> offset) & 3;
 				if (pfunc != function) {
-					pr_err(KERN_ERR "pin grounp conflict! request pin %d func %d conflict with pin %d func %d\n",
+					pr_err("pin grounp conflict! request pin %d func %d conflict with pin %d func %d\n",
 						ident, function,
 						gpiopin,
 						pfunc);
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to