diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-20 03:02:01 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-20 03:02:01 -0400 |
commit | d8699e65c6bc0a81b5e679ca5b135bfe3c3fb483 (patch) | |
tree | ba80488ff6b5b7e15c999233fe798332fa979430 /arch/powerpc/kernel | |
parent | 971dc77b64db9466f5caab56019e62a93c0ddfc5 (diff) |
ppc64: Change ppc_md.get_cpuinfo to ppc_md.show_cpuinfo
... for consistency with ppc32; also add in ppc32's show_percpuinfo
function.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 6f29614c3581..97ffdcf09c03 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -704,8 +704,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
704 | if (cpu_id == NR_CPUS) { | 704 | if (cpu_id == NR_CPUS) { |
705 | seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq); | 705 | seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq); |
706 | 706 | ||
707 | if (ppc_md.get_cpuinfo != NULL) | 707 | if (ppc_md.show_cpuinfo != NULL) |
708 | ppc_md.get_cpuinfo(m); | 708 | ppc_md.show_cpuinfo(m); |
709 | 709 | ||
710 | return 0; | 710 | return 0; |
711 | } | 711 | } |