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/bpa_setup.c | |
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/ppc64/kernel/bpa_setup.c')
-rw-r--r-- | arch/ppc64/kernel/bpa_setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc64/kernel/bpa_setup.c b/arch/ppc64/kernel/bpa_setup.c index 017cf23e91f..c2dc8f282eb 100644 --- a/arch/ppc64/kernel/bpa_setup.c +++ b/arch/ppc64/kernel/bpa_setup.c @@ -55,7 +55,7 @@ #define DBG(fmt...) #endif -void bpa_get_cpuinfo(struct seq_file *m) +void bpa_show_cpuinfo(struct seq_file *m) { struct device_node *root; const char *model = ""; @@ -129,7 +129,7 @@ struct machdep_calls __initdata bpa_md = { .probe = bpa_probe, .setup_arch = bpa_setup_arch, .init_early = bpa_init_early, - .get_cpuinfo = bpa_get_cpuinfo, + .show_cpuinfo = bpa_show_cpuinfo, .restart = rtas_restart, .power_off = rtas_power_off, .halt = rtas_halt, |