diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-24 06:15:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:21 -0500 |
commit | cdb0452789d365695b5b173542af9c7e3d24f185 (patch) | |
tree | f8594a754736aecfb52d835a2e12f46a923e6ed6 /arch | |
parent | 008accbbae6b2f18c2039d563f28d46ff4388d36 (diff) |
[PATCH] kill include/linux/platform.h, default_idle() cleanup
include/linux/platform.h contained nothing that was actually used except
the default_idle() prototype, and is therefore removed by this patch.
This patch does the following with the platform specific default_idle()
functions on different architectures:
- remove the unused function:
- parisc
- sparc64
- make the needlessly global function static:
- arm
- h8300
- m68k
- m68knommu
- s390
- v850
- x86_64
- add a prototype in asm/system.h:
- cris
- i386
- ia64
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Patrick Mochel <mochel@digitalimplant.org>
Acked-by: Kyle McMartin <kyle@parisc-linux.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/cris/kernel/process.c | 3 | ||||
-rw-r--r-- | arch/h8300/kernel/process.c | 4 | ||||
-rw-r--r-- | arch/i386/kernel/apm.c | 2 | ||||
-rw-r--r-- | arch/i386/mach-visws/reboot.c | 1 | ||||
-rw-r--r-- | arch/ia64/kernel/setup.c | 1 | ||||
-rw-r--r-- | arch/m68k/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/m68knommu/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/parisc/kernel/process.c | 5 | ||||
-rw-r--r-- | arch/s390/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/sh/kernel/process.c | 1 | ||||
-rw-r--r-- | arch/v850/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/x86_64/kernel/process.c | 2 |
12 files changed, 8 insertions, 19 deletions
diff --git a/arch/cris/kernel/process.c b/arch/cris/kernel/process.c index 4ab3e87115b6..123451c44154 100644 --- a/arch/cris/kernel/process.c +++ b/arch/cris/kernel/process.c | |||
@@ -116,6 +116,7 @@ | |||
116 | #include <asm/pgtable.h> | 116 | #include <asm/pgtable.h> |
117 | #include <asm/uaccess.h> | 117 | #include <asm/uaccess.h> |
118 | #include <asm/irq.h> | 118 | #include <asm/irq.h> |
119 | #include <asm/system.h> | ||
119 | #include <linux/module.h> | 120 | #include <linux/module.h> |
120 | #include <linux/spinlock.h> | 121 | #include <linux/spinlock.h> |
121 | #include <linux/fs_struct.h> | 122 | #include <linux/fs_struct.h> |
@@ -194,8 +195,6 @@ EXPORT_SYMBOL(enable_hlt); | |||
194 | */ | 195 | */ |
195 | void (*pm_idle)(void); | 196 | void (*pm_idle)(void); |
196 | 197 | ||
197 | extern void default_idle(void); | ||
198 | |||
199 | /* | 198 | /* |
200 | * The idle thread. There's no useful work to be | 199 | * The idle thread. There's no useful work to be |
201 | * done, so just try to conserve power and have a | 200 | * done, so just try to conserve power and have a |
diff --git a/arch/h8300/kernel/process.c b/arch/h8300/kernel/process.c index dd344f112cfe..16ccddc69c2b 100644 --- a/arch/h8300/kernel/process.c +++ b/arch/h8300/kernel/process.c | |||
@@ -54,7 +54,7 @@ asmlinkage void ret_from_fork(void); | |||
54 | * The idle loop on an H8/300.. | 54 | * The idle loop on an H8/300.. |
55 | */ | 55 | */ |
56 | #if !defined(CONFIG_H8300H_SIM) && !defined(CONFIG_H8S_SIM) | 56 | #if !defined(CONFIG_H8300H_SIM) && !defined(CONFIG_H8S_SIM) |
57 | void default_idle(void) | 57 | static void default_idle(void) |
58 | { | 58 | { |
59 | local_irq_disable(); | 59 | local_irq_disable(); |
60 | if (!need_resched()) { | 60 | if (!need_resched()) { |
@@ -65,7 +65,7 @@ void default_idle(void) | |||
65 | local_irq_enable(); | 65 | local_irq_enable(); |
66 | } | 66 | } |
67 | #else | 67 | #else |
68 | void default_idle(void) | 68 | static void default_idle(void) |
69 | { | 69 | { |
70 | cpu_relax(); | 70 | cpu_relax(); |
71 | } | 71 | } |
diff --git a/arch/i386/kernel/apm.c b/arch/i386/kernel/apm.c index 05312a8abb8b..da30a374dd4e 100644 --- a/arch/i386/kernel/apm.c +++ b/arch/i386/kernel/apm.c | |||
@@ -824,8 +824,6 @@ static void apm_do_busy(void) | |||
824 | 824 | ||
825 | static void (*original_pm_idle)(void); | 825 | static void (*original_pm_idle)(void); |
826 | 826 | ||
827 | extern void default_idle(void); | ||
828 | |||
829 | /** | 827 | /** |
830 | * apm_cpu_idle - cpu idling for APM capable Linux | 828 | * apm_cpu_idle - cpu idling for APM capable Linux |
831 | * | 829 | * |
diff --git a/arch/i386/mach-visws/reboot.c b/arch/i386/mach-visws/reboot.c index 5d73e042ed0a..99332abfad42 100644 --- a/arch/i386/mach-visws/reboot.c +++ b/arch/i386/mach-visws/reboot.c | |||
@@ -1,7 +1,6 @@ | |||
1 | #include <linux/module.h> | 1 | #include <linux/module.h> |
2 | #include <linux/smp.h> | 2 | #include <linux/smp.h> |
3 | #include <linux/delay.h> | 3 | #include <linux/delay.h> |
4 | #include <linux/platform.h> | ||
5 | 4 | ||
6 | #include <asm/io.h> | 5 | #include <asm/io.h> |
7 | #include "piix4.h" | 6 | #include "piix4.h" |
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index 3258e09278d0..958c1508036f 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c | |||
@@ -41,7 +41,6 @@ | |||
41 | #include <linux/serial_core.h> | 41 | #include <linux/serial_core.h> |
42 | #include <linux/efi.h> | 42 | #include <linux/efi.h> |
43 | #include <linux/initrd.h> | 43 | #include <linux/initrd.h> |
44 | #include <linux/platform.h> | ||
45 | #include <linux/pm.h> | 44 | #include <linux/pm.h> |
46 | #include <linux/cpufreq.h> | 45 | #include <linux/cpufreq.h> |
47 | 46 | ||
diff --git a/arch/m68k/kernel/process.c b/arch/m68k/kernel/process.c index 2d8ad0727b6b..33648efb772e 100644 --- a/arch/m68k/kernel/process.c +++ b/arch/m68k/kernel/process.c | |||
@@ -77,7 +77,7 @@ unsigned long thread_saved_pc(struct task_struct *tsk) | |||
77 | /* | 77 | /* |
78 | * The idle loop on an m68k.. | 78 | * The idle loop on an m68k.. |
79 | */ | 79 | */ |
80 | void default_idle(void) | 80 | static void default_idle(void) |
81 | { | 81 | { |
82 | if (!need_resched()) | 82 | if (!need_resched()) |
83 | #if defined(MACH_ATARI_ONLY) && !defined(CONFIG_HADES) | 83 | #if defined(MACH_ATARI_ONLY) && !defined(CONFIG_HADES) |
diff --git a/arch/m68knommu/kernel/process.c b/arch/m68knommu/kernel/process.c index 63c117dae0c3..f861755ec88b 100644 --- a/arch/m68knommu/kernel/process.c +++ b/arch/m68knommu/kernel/process.c | |||
@@ -51,7 +51,7 @@ EXPORT_SYMBOL(pm_power_off); | |||
51 | /* | 51 | /* |
52 | * The idle loop on an m68knommu.. | 52 | * The idle loop on an m68knommu.. |
53 | */ | 53 | */ |
54 | void default_idle(void) | 54 | static void default_idle(void) |
55 | { | 55 | { |
56 | local_irq_disable(); | 56 | local_irq_disable(); |
57 | while (!need_resched()) { | 57 | while (!need_resched()) { |
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index e8dea4177113..0b485ef4be89 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c | |||
@@ -54,11 +54,6 @@ | |||
54 | #include <asm/uaccess.h> | 54 | #include <asm/uaccess.h> |
55 | #include <asm/unwind.h> | 55 | #include <asm/unwind.h> |
56 | 56 | ||
57 | void default_idle(void) | ||
58 | { | ||
59 | barrier(); | ||
60 | } | ||
61 | |||
62 | /* | 57 | /* |
63 | * The idle thread. There's no useful work to be | 58 | * The idle thread. There's no useful work to be |
64 | * done, so just try to conserve power and have a | 59 | * done, so just try to conserve power and have a |
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c index da6fbae8df91..99182a415fe7 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c | |||
@@ -103,7 +103,7 @@ extern void s390_handle_mcck(void); | |||
103 | /* | 103 | /* |
104 | * The idle loop on a S390... | 104 | * The idle loop on a S390... |
105 | */ | 105 | */ |
106 | void default_idle(void) | 106 | static void default_idle(void) |
107 | { | 107 | { |
108 | int cpu, rc; | 108 | int cpu, rc; |
109 | 109 | ||
diff --git a/arch/sh/kernel/process.c b/arch/sh/kernel/process.c index 9fd1723e6219..22dc9c21201d 100644 --- a/arch/sh/kernel/process.c +++ b/arch/sh/kernel/process.c | |||
@@ -19,7 +19,6 @@ | |||
19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
20 | #include <linux/pm.h> | 20 | #include <linux/pm.h> |
21 | #include <linux/ptrace.h> | 21 | #include <linux/ptrace.h> |
22 | #include <linux/platform.h> | ||
23 | #include <linux/kallsyms.h> | 22 | #include <linux/kallsyms.h> |
24 | #include <linux/kexec.h> | 23 | #include <linux/kexec.h> |
25 | 24 | ||
diff --git a/arch/v850/kernel/process.c b/arch/v850/kernel/process.c index 621111ddf907..57218c76925c 100644 --- a/arch/v850/kernel/process.c +++ b/arch/v850/kernel/process.c | |||
@@ -37,7 +37,7 @@ extern void ret_from_fork (void); | |||
37 | 37 | ||
38 | 38 | ||
39 | /* The idle loop. */ | 39 | /* The idle loop. */ |
40 | void default_idle (void) | 40 | static void default_idle (void) |
41 | { | 41 | { |
42 | while (! need_resched ()) | 42 | while (! need_resched ()) |
43 | asm ("halt; nop; nop; nop; nop; nop" ::: "cc"); | 43 | asm ("halt; nop; nop; nop; nop; nop" ::: "cc"); |
diff --git a/arch/x86_64/kernel/process.c b/arch/x86_64/kernel/process.c index 22a05dec81a2..80a8f3079178 100644 --- a/arch/x86_64/kernel/process.c +++ b/arch/x86_64/kernel/process.c | |||
@@ -114,7 +114,7 @@ void exit_idle(void) | |||
114 | * We use this if we don't have any better | 114 | * We use this if we don't have any better |
115 | * idle routine.. | 115 | * idle routine.. |
116 | */ | 116 | */ |
117 | void default_idle(void) | 117 | static void default_idle(void) |
118 | { | 118 | { |
119 | local_irq_enable(); | 119 | local_irq_enable(); |
120 | 120 | ||