diff options
Diffstat (limited to 'arch/ppc/platforms/pmac_setup.c')
-rw-r--r-- | arch/ppc/platforms/pmac_setup.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/arch/ppc/platforms/pmac_setup.c b/arch/ppc/platforms/pmac_setup.c index d6356f480d90..55d2beffe560 100644 --- a/arch/ppc/platforms/pmac_setup.c +++ b/arch/ppc/platforms/pmac_setup.c | |||
@@ -122,7 +122,7 @@ extern struct smp_ops_t psurge_smp_ops; | |||
122 | extern struct smp_ops_t core99_smp_ops; | 122 | extern struct smp_ops_t core99_smp_ops; |
123 | #endif /* CONFIG_SMP */ | 123 | #endif /* CONFIG_SMP */ |
124 | 124 | ||
125 | static int __pmac | 125 | static int |
126 | pmac_show_cpuinfo(struct seq_file *m) | 126 | pmac_show_cpuinfo(struct seq_file *m) |
127 | { | 127 | { |
128 | struct device_node *np; | 128 | struct device_node *np; |
@@ -226,7 +226,7 @@ pmac_show_cpuinfo(struct seq_file *m) | |||
226 | return 0; | 226 | return 0; |
227 | } | 227 | } |
228 | 228 | ||
229 | static int __openfirmware | 229 | static int |
230 | pmac_show_percpuinfo(struct seq_file *m, int i) | 230 | pmac_show_percpuinfo(struct seq_file *m, int i) |
231 | { | 231 | { |
232 | #ifdef CONFIG_CPU_FREQ_PMAC | 232 | #ifdef CONFIG_CPU_FREQ_PMAC |
@@ -330,9 +330,9 @@ pmac_setup_arch(void) | |||
330 | #ifdef CONFIG_SMP | 330 | #ifdef CONFIG_SMP |
331 | /* Check for Core99 */ | 331 | /* Check for Core99 */ |
332 | if (find_devices("uni-n") || find_devices("u3")) | 332 | if (find_devices("uni-n") || find_devices("u3")) |
333 | ppc_md.smp_ops = &core99_smp_ops; | 333 | smp_ops = &core99_smp_ops; |
334 | else | 334 | else |
335 | ppc_md.smp_ops = &psurge_smp_ops; | 335 | smp_ops = &psurge_smp_ops; |
336 | #endif /* CONFIG_SMP */ | 336 | #endif /* CONFIG_SMP */ |
337 | 337 | ||
338 | pci_create_OF_bus_map(); | 338 | pci_create_OF_bus_map(); |
@@ -447,7 +447,7 @@ static int pmac_pm_enter(suspend_state_t state) | |||
447 | enable_kernel_fp(); | 447 | enable_kernel_fp(); |
448 | 448 | ||
449 | #ifdef CONFIG_ALTIVEC | 449 | #ifdef CONFIG_ALTIVEC |
450 | if (cur_cpu_spec[0]->cpu_features & CPU_FTR_ALTIVEC) | 450 | if (cur_cpu_spec->cpu_features & CPU_FTR_ALTIVEC) |
451 | enable_kernel_altivec(); | 451 | enable_kernel_altivec(); |
452 | #endif /* CONFIG_ALTIVEC */ | 452 | #endif /* CONFIG_ALTIVEC */ |
453 | 453 | ||
@@ -485,7 +485,7 @@ static int pmac_late_init(void) | |||
485 | late_initcall(pmac_late_init); | 485 | late_initcall(pmac_late_init); |
486 | 486 | ||
487 | /* can't be __init - can be called whenever a disk is first accessed */ | 487 | /* can't be __init - can be called whenever a disk is first accessed */ |
488 | void __pmac | 488 | void |
489 | note_bootable_part(dev_t dev, int part, int goodness) | 489 | note_bootable_part(dev_t dev, int part, int goodness) |
490 | { | 490 | { |
491 | static int found_boot = 0; | 491 | static int found_boot = 0; |
@@ -511,7 +511,7 @@ note_bootable_part(dev_t dev, int part, int goodness) | |||
511 | } | 511 | } |
512 | } | 512 | } |
513 | 513 | ||
514 | static void __pmac | 514 | static void |
515 | pmac_restart(char *cmd) | 515 | pmac_restart(char *cmd) |
516 | { | 516 | { |
517 | #ifdef CONFIG_ADB_CUDA | 517 | #ifdef CONFIG_ADB_CUDA |
@@ -536,7 +536,7 @@ pmac_restart(char *cmd) | |||
536 | } | 536 | } |
537 | } | 537 | } |
538 | 538 | ||
539 | static void __pmac | 539 | static void |
540 | pmac_power_off(void) | 540 | pmac_power_off(void) |
541 | { | 541 | { |
542 | #ifdef CONFIG_ADB_CUDA | 542 | #ifdef CONFIG_ADB_CUDA |
@@ -561,7 +561,7 @@ pmac_power_off(void) | |||
561 | } | 561 | } |
562 | } | 562 | } |
563 | 563 | ||
564 | static void __pmac | 564 | static void |
565 | pmac_halt(void) | 565 | pmac_halt(void) |
566 | { | 566 | { |
567 | pmac_power_off(); | 567 | pmac_power_off(); |
@@ -661,7 +661,6 @@ pmac_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
661 | ppc_md.setup_arch = pmac_setup_arch; | 661 | ppc_md.setup_arch = pmac_setup_arch; |
662 | ppc_md.show_cpuinfo = pmac_show_cpuinfo; | 662 | ppc_md.show_cpuinfo = pmac_show_cpuinfo; |
663 | ppc_md.show_percpuinfo = pmac_show_percpuinfo; | 663 | ppc_md.show_percpuinfo = pmac_show_percpuinfo; |
664 | ppc_md.irq_canonicalize = NULL; | ||
665 | ppc_md.init_IRQ = pmac_pic_init; | 664 | ppc_md.init_IRQ = pmac_pic_init; |
666 | ppc_md.get_irq = pmac_get_irq; /* Changed later on ... */ | 665 | ppc_md.get_irq = pmac_get_irq; /* Changed later on ... */ |
667 | 666 | ||