diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-07-26 13:36:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-26 17:35:42 -0400 |
commit | 59586e5a262a29361c45c929ea3253d4aec830b0 (patch) | |
tree | 1219b4943bc04515973a44c6e3a184e4f6f026f0 /arch/h8300 | |
parent | 16dcb4bbda579c4e3d80048b755ac124d8fab21a (diff) |
[PATCH] Don't export machine_restart, machine_halt, or machine_power_off.
machine_restart, machine_halt and machine_power_off are machine
specific hooks deep into the reboot logic, that modules
have no business messing with. Usually code should be calling
kernel_restart, kernel_halt, kernel_power_off, or
emergency_restart. So don't export machine_restart,
machine_halt, and machine_power_off so we can catch buggy users.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/h8300')
-rw-r--r-- | arch/h8300/kernel/process.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/h8300/kernel/process.c b/arch/h8300/kernel/process.c index b5f83e9f04db..27f1fce64ce4 100644 --- a/arch/h8300/kernel/process.c +++ b/arch/h8300/kernel/process.c | |||
@@ -90,8 +90,6 @@ void machine_restart(char * __unused) | |||
90 | __asm__("jmp @@0"); | 90 | __asm__("jmp @@0"); |
91 | } | 91 | } |
92 | 92 | ||
93 | EXPORT_SYMBOL(machine_restart); | ||
94 | |||
95 | void machine_halt(void) | 93 | void machine_halt(void) |
96 | { | 94 | { |
97 | local_irq_disable(); | 95 | local_irq_disable(); |
@@ -99,8 +97,6 @@ void machine_halt(void) | |||
99 | for (;;); | 97 | for (;;); |
100 | } | 98 | } |
101 | 99 | ||
102 | EXPORT_SYMBOL(machine_halt); | ||
103 | |||
104 | void machine_power_off(void) | 100 | void machine_power_off(void) |
105 | { | 101 | { |
106 | local_irq_disable(); | 102 | local_irq_disable(); |
@@ -108,8 +104,6 @@ void machine_power_off(void) | |||
108 | for (;;); | 104 | for (;;); |
109 | } | 105 | } |
110 | 106 | ||
111 | EXPORT_SYMBOL(machine_power_off); | ||
112 | |||
113 | void show_regs(struct pt_regs * regs) | 107 | void show_regs(struct pt_regs * regs) |
114 | { | 108 | { |
115 | printk("\nPC: %08lx Status: %02x", | 109 | printk("\nPC: %08lx Status: %02x", |