diff options
| author | Anton Blanchard <anton@samba.org> | 2004-08-22 22:31:31 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-08-22 22:31:31 -0700 |
| commit | cda707e2a227d1102572c101f096dd83e87b6e72 (patch) | |
| tree | 2807e1bbfd0e5a1855c4b11ec00987a974f263c4 | |
| parent | 23cbe30898e912eee1ec7135e9d09612b8e3a1f8 (diff) | |
[PATCH] ppc64: Fix oprofile error messages
Clean up an oprofile error message, it was missing a newline.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/ppc64/kernel/sysfs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/ppc64/kernel/sysfs.c b/arch/ppc64/kernel/sysfs.c index a31dd52b100a..f6ef0071c704 100644 --- a/arch/ppc64/kernel/sysfs.c +++ b/arch/ppc64/kernel/sysfs.c @@ -147,8 +147,9 @@ void ppc64_enable_pmcs(void) reset = 0; ret = plpar_hcall_norets(H_PERFMON, set, reset); if (ret) - printk(KERN_ERR "H_PERFMON call returned %d", - ret); + printk(KERN_ERR "H_PERFMON call on cpu %u " + "returned %d\n", + smp_processor_id(), ret); break; default: |
