projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be10815
)
[TRIVIAL] [PARISC] Fix module.c printk message, add missing ')'
author
Helge Deller
<deller@gmx.de>
Wed, 18 Oct 2006 19:44:30 +0000
(21:44 +0200)
committer
Kyle McMartin
<kyle@ubuntu.com>
Fri, 8 Dec 2006 05:34:41 +0000
(
00:34
-0500)
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
arch/parisc/kernel/module.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/parisc/kernel/module.c
b/arch/parisc/kernel/module.c
index f50b982b0834ce8b2598d1b66d1c06b5306ca29f..47ea4e4a2179c6bcc41db5dab896f5e6d3949c65 100644
(file)
--- a/
arch/parisc/kernel/module.c
+++ b/
arch/parisc/kernel/module.c
@@
-822,7
+822,8
@@
int module_finalize(const Elf_Ehdr *hdr,
me->name, strtab, symhdr);
if(me->arch.got_count > MAX_GOTS) {
- printk(KERN_ERR "%s: Global Offset Table overflow (used %ld, allowed %d\n", me->name, me->arch.got_count, MAX_GOTS);
+ printk(KERN_ERR "%s: Global Offset Table overflow (used %ld, allowed %d)\n",
+ me->name, me->arch.got_count, MAX_GOTS);
return -EINVAL;
}