aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel/pmac_setup.c
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2005-07-27 14:44:18 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-27 19:25:57 -0400
commit6fdfb382813d66757aef4d83e369f8153a40b371 (patch)
treec4c62876595ca22daa3ec6ec96e64ba108e2f547 /arch/ppc64/kernel/pmac_setup.c
parent62b662a30963c2e7bdfc129f78c3da0559202379 (diff)
[PATCH] make a few functions static in pmac_setup.c
Making a few functions static saves a few bytes, but only on ppc32. text data bss dec hex filename 3752421 1605208 345608 5703237 570645 ../O-ppc64_iSeries_defconfig/vmlinux 3709411 2042552 339992 6091955 5cf4b3 ../O-ppc64_maple_defconfig/vmlinux 5397329 3054824 679856 9132009 8b57e9 ../O-ppc64_pSeries_defconfig/vmlinux -3882695 417552 197760 4498007 44a257 ../O-ppc_common_defconfig/vmlinux -3414510 574500 241440 4230450 408d32 ../O-ppc_pmac_defconfig/vmlinux +3882627 417168 197760 4497555 44a093 ../O-ppc_common_defconfig/vmlinux +3414442 575428 241440 4231310 40908e ../O-ppc_pmac_defconfig/vmlinux Signed-off-by: Olaf Hering <olh@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc64/kernel/pmac_setup.c')
-rw-r--r--arch/ppc64/kernel/pmac_setup.c12
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
98extern void udbg_init_scc(struct device_node *np); 98extern void udbg_init_scc(struct device_node *np);
99 99
100void __pmac pmac_show_cpuinfo(struct seq_file *m) 100static 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
147void __init pmac_setup_arch(void) 147static 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
233void __pmac pmac_restart(char *cmd) 233static 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
252void __pmac pmac_power_off(void) 252static 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
270void __pmac pmac_halt(void) 270static 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 */
330void __init pmac_init_early(void) 330static void __init pmac_init_early(void)
331{ 331{
332 DBG(" -> pmac_init_early\n"); 332 DBG(" -> pmac_init_early\n");
333 333