diff options
Diffstat (limited to 'arch/ppc64')
-rw-r--r-- | arch/ppc64/kernel/pmac_setup.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/ppc64/kernel/pmac_setup.c b/arch/ppc64/kernel/pmac_setup.c index 3013cdb5f933..e40877fa67cd 100644 --- a/arch/ppc64/kernel/pmac_setup.c +++ b/arch/ppc64/kernel/pmac_setup.c | |||
@@ -97,7 +97,7 @@ EXPORT_SYMBOL(smu_cmdbuf_abs); | |||
97 | 97 | ||
98 | extern void udbg_init_scc(struct device_node *np); | 98 | extern void udbg_init_scc(struct device_node *np); |
99 | 99 | ||
100 | void __pmac pmac_show_cpuinfo(struct seq_file *m) | 100 | static void __pmac pmac_show_cpuinfo(struct seq_file *m) |
101 | { | 101 | { |
102 | struct device_node *np; | 102 | struct device_node *np; |
103 | char *pp; | 103 | char *pp; |
@@ -144,7 +144,7 @@ void __pmac pmac_show_cpuinfo(struct seq_file *m) | |||
144 | } | 144 | } |
145 | 145 | ||
146 | 146 | ||
147 | void __init pmac_setup_arch(void) | 147 | static void __init pmac_setup_arch(void) |
148 | { | 148 | { |
149 | /* init to some ~sane value until calibrate_delay() runs */ | 149 | /* init to some ~sane value until calibrate_delay() runs */ |
150 | loops_per_jiffy = 50000000; | 150 | loops_per_jiffy = 50000000; |
@@ -230,7 +230,7 @@ void __pmac note_bootable_part(dev_t dev, int part, int goodness) | |||
230 | } | 230 | } |
231 | } | 231 | } |
232 | 232 | ||
233 | void __pmac pmac_restart(char *cmd) | 233 | static void __pmac pmac_restart(char *cmd) |
234 | { | 234 | { |
235 | switch(sys_ctrler) { | 235 | switch(sys_ctrler) { |
236 | #ifdef CONFIG_ADB_PMU | 236 | #ifdef CONFIG_ADB_PMU |
@@ -249,7 +249,7 @@ void __pmac pmac_restart(char *cmd) | |||
249 | } | 249 | } |
250 | } | 250 | } |
251 | 251 | ||
252 | void __pmac pmac_power_off(void) | 252 | static void __pmac pmac_power_off(void) |
253 | { | 253 | { |
254 | switch(sys_ctrler) { | 254 | switch(sys_ctrler) { |
255 | #ifdef CONFIG_ADB_PMU | 255 | #ifdef CONFIG_ADB_PMU |
@@ -267,7 +267,7 @@ void __pmac pmac_power_off(void) | |||
267 | } | 267 | } |
268 | } | 268 | } |
269 | 269 | ||
270 | void __pmac pmac_halt(void) | 270 | static void __pmac pmac_halt(void) |
271 | { | 271 | { |
272 | pmac_power_off(); | 272 | pmac_power_off(); |
273 | } | 273 | } |
@@ -327,7 +327,7 @@ static void __init init_boot_display(void) | |||
327 | /* | 327 | /* |
328 | * Early initialization. | 328 | * Early initialization. |
329 | */ | 329 | */ |
330 | void __init pmac_init_early(void) | 330 | static void __init pmac_init_early(void) |
331 | { | 331 | { |
332 | DBG(" -> pmac_init_early\n"); | 332 | DBG(" -> pmac_init_early\n"); |
333 | 333 | ||