summaryrefslogtreecommitdiffstats
path: root/arch/parisc
diff options
context:
space:
mode:
authorHelge Deller2006-10-18 21:44:30 +0200
committerKyle McMartin2006-12-08 06:34:41 +0100
commitf8fc18a1323c3f4171a643d6ebf1597f4ba8bc53 (patch)
treef04087a617ff058662768373ed441afb14da0cbd /arch/parisc
parent[PARISC] bloody printf fmt string warnings (diff)
downloadkernel-qcow2-linux-f8fc18a1323c3f4171a643d6ebf1597f4ba8bc53.tar.gz
kernel-qcow2-linux-f8fc18a1323c3f4171a643d6ebf1597f4ba8bc53.tar.xz
kernel-qcow2-linux-f8fc18a1323c3f4171a643d6ebf1597f4ba8bc53.zip
[TRIVIAL] [PARISC] Fix module.c printk message, add missing ')'
Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r--arch/parisc/kernel/module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/kernel/module.c b/arch/parisc/kernel/module.c
index f50b982b0834..47ea4e4a2179 100644
--- 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;
}