Title: [6854] trunk/arch/blackfin/kernel/module.c: module: fix broken printk() format string in previous commit
Revision
6854
Author
vapier
Date
2009-06-25 19:36:12 -0500 (Thu, 25 Jun 2009)

Log Message

module: fix broken printk() format string in previous commit

Modified Paths


Diff

Modified: trunk/arch/blackfin/kernel/module.c (6853 => 6854)


--- trunk/arch/blackfin/kernel/module.c	2009-06-26 00:35:24 UTC (rev 6853)
+++ trunk/arch/blackfin/kernel/module.c	2009-06-26 00:36:12 UTC (rev 6854)
@@ -233,7 +233,7 @@
 		}
 #endif
 
-		pr_debug("location is %lx, value is %lx type is %d\n",
+		pr_debug("location is %lx, value is %x type is %d\n",
 			mod->name, (unsigned long)location32, value,
 			ELF32_R_TYPE(rel[i].r_info));
 
@@ -264,7 +264,7 @@
 		case R_BFIN_PCREL12_JUMP:
 		case R_BFIN_PCREL12_JUMP_S:
 		case R_BFIN_PCREL10:
-			pr_err("unsupported relocation: %u (no -mlong-calls?)\n"
+			pr_err("unsupported relocation: %u (no -mlong-calls?)\n",
 				mod->name, ELF32_R_TYPE(rel[i].r_info));
 			return -ENOEXEC;
 		default:
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to