diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-20 17:02:01 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-20 17:02:01 +1000 |
commit | d8699e65c6bc0a81b5e679ca5b135bfe3c3fb483 (patch) | |
tree | ba80488ff6b5b7e15c999233fe798332fa979430 /arch/ppc64/kernel/setup.c | |
parent | 971dc77b64db9466f5caab56019e62a93c0ddfc5 (diff) | |
download | op-kernel-dev-d8699e65c6bc0a81b5e679ca5b135bfe3c3fb483.zip op-kernel-dev-d8699e65c6bc0a81b5e679ca5b135bfe3c3fb483.tar.gz |
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/ppc64/kernel/setup.c')
-rw-r--r-- | arch/ppc64/kernel/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc64/kernel/setup.c b/arch/ppc64/kernel/setup.c index 3e6c154..42019be 100644 --- a/arch/ppc64/kernel/setup.c +++ b/arch/ppc64/kernel/setup.c @@ -703,8 +703,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) if (cpu_id == NR_CPUS) { seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq); - if (ppc_md.get_cpuinfo != NULL) - ppc_md.get_cpuinfo(m); + if (ppc_md.show_cpuinfo != NULL) + ppc_md.show_cpuinfo(m); return 0; } |