summaryrefslogtreecommitdiffstats
path: root/arch/ppc/platforms/pmac_setup.c
diff options
context:
space:
mode:
authorPaul Mackerras2005-10-19 13:44:51 +0200
committerPaul Mackerras2005-10-19 13:44:51 +0200
commit7ed476d17f04473f70d796cb6c172bdcfcc9b8e5 (patch)
treebafacf9813cdbb27a9e4a125340c98415cdcb903 /arch/ppc/platforms/pmac_setup.c
parentMerge rsync://oak/kernels/iseries/work/ (diff)
downloadkernel-qcow2-linux-7ed476d17f04473f70d796cb6c172bdcfcc9b8e5.tar.gz
kernel-qcow2-linux-7ed476d17f04473f70d796cb6c172bdcfcc9b8e5.tar.xz
kernel-qcow2-linux-7ed476d17f04473f70d796cb6c172bdcfcc9b8e5.zip
ppc: Minor smp changes for consistency with ppc64
This makes platform code use the smp_ops variable directly instead of ppc_md.smp_ops, removes the two unused `data' and `wait' arguments from the *_message_pass() functions, and removes the call to the never-implemented smp_ops->space_timers() function. Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms/pmac_setup.c')
-rw-r--r--arch/ppc/platforms/pmac_setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc/platforms/pmac_setup.c b/arch/ppc/platforms/pmac_setup.c
index 74165684552a..55d2beffe560 100644
--- a/arch/ppc/platforms/pmac_setup.c
+++ b/arch/ppc/platforms/pmac_setup.c
@@ -330,9 +330,9 @@ pmac_setup_arch(void)
#ifdef CONFIG_SMP
/* Check for Core99 */
if (find_devices("uni-n") || find_devices("u3"))
- ppc_md.smp_ops = &core99_smp_ops;
+ smp_ops = &core99_smp_ops;
else
- ppc_md.smp_ops = &psurge_smp_ops;
+ smp_ops = &psurge_smp_ops;
#endif /* CONFIG_SMP */
pci_create_OF_bus_map();