diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:38:10 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:06 -0500 |
commit | ccbebdaccf53ef21663d3bde0ab7b3806d0aeb94 (patch) | |
tree | 8b4a7e0e5137fc2a76f8cddfd76405617eb92868 /arch | |
parent | 55e747445beec8df1133bb8681c884500546775c (diff) |
[PATCH] arch/ia64: ansify
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/crash.c | 2 | ||||
-rw-r--r-- | arch/ia64/kernel/smp.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/kernel/crash.c b/arch/ia64/kernel/crash.c index 9d92097ce96d..37bb16f07fc3 100644 --- a/arch/ia64/kernel/crash.c +++ b/arch/ia64/kernel/crash.c | |||
@@ -52,7 +52,7 @@ extern void ia64_dump_cpu_regs(void *); | |||
52 | static DEFINE_PER_CPU(struct elf_prstatus, elf_prstatus); | 52 | static DEFINE_PER_CPU(struct elf_prstatus, elf_prstatus); |
53 | 53 | ||
54 | void | 54 | void |
55 | crash_save_this_cpu() | 55 | crash_save_this_cpu(void) |
56 | { | 56 | { |
57 | void *buf; | 57 | void *buf; |
58 | unsigned long cfm, sof, sol; | 58 | unsigned long cfm, sof, sol; |
diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index f4c7f7769cf7..55ddd809b02d 100644 --- a/arch/ia64/kernel/smp.c +++ b/arch/ia64/kernel/smp.c | |||
@@ -221,13 +221,13 @@ send_IPI_self (int op) | |||
221 | 221 | ||
222 | #ifdef CONFIG_KEXEC | 222 | #ifdef CONFIG_KEXEC |
223 | void | 223 | void |
224 | kdump_smp_send_stop() | 224 | kdump_smp_send_stop(void) |
225 | { | 225 | { |
226 | send_IPI_allbutself(IPI_KDUMP_CPU_STOP); | 226 | send_IPI_allbutself(IPI_KDUMP_CPU_STOP); |
227 | } | 227 | } |
228 | 228 | ||
229 | void | 229 | void |
230 | kdump_smp_send_init() | 230 | kdump_smp_send_init(void) |
231 | { | 231 | { |
232 | unsigned int cpu, self_cpu; | 232 | unsigned int cpu, self_cpu; |
233 | self_cpu = smp_processor_id(); | 233 | self_cpu = smp_processor_id(); |