Title: [6852] trunk/arch/blackfin/kernel/module.c: module: fix broken printk() format string in previous commit
Revision
6852
Author
vapier
Date
2009-06-25 19:33:40 -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 (6851 => 6852)


--- trunk/arch/blackfin/kernel/module.c	2009-06-25 15:49:38 UTC (rev 6851)
+++ trunk/arch/blackfin/kernel/module.c	2009-06-26 00:33:40 UTC (rev 6852)
@@ -273,8 +273,8 @@
 		case R_BFIN_PCREL12_JUMP:
 		case R_BFIN_PCREL12_JUMP_S:
 		case R_BFIN_PCREL10:
-			printk(KERN_ERR "module %s: Unsupported relocation: %u not built properly,"
-				" includes relocation: %u", mod->name, ELF32_R_TYPE(rel[i].r_info));
+			printk(KERN_ERR "module %s: Unsupported relocation: %u (no -mlong-calls?)\n"
+				mod->name, ELF32_R_TYPE(rel[i].r_info));
 			return -ENOEXEC;
 		default:
 			printk(KERN_ERR "module %s: Unknown relocation: %u\n",
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to