aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-voyager/voyager_smp.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 07:31:17 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:17 -0500
commit75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a (patch)
treeca8f9af34d70e237b78ca47c225fbbbbe1a64fac /arch/x86/mach-voyager/voyager_smp.c
parent56c4da454de1264e381256f658f61b9ef690dd21 (diff)
x86: remove all definitions with fastcall
fastcall is always defined to be empty, remove it from arch/x86 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mach-voyager/voyager_smp.c')
-rw-r--r--arch/x86/mach-voyager/voyager_smp.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/x86/mach-voyager/voyager_smp.c b/arch/x86/mach-voyager/voyager_smp.c
index f2c13482acc0..751777241881 100644
--- a/arch/x86/mach-voyager/voyager_smp.c
+++ b/arch/x86/mach-voyager/voyager_smp.c
@@ -755,7 +755,7 @@ void __init initialize_secondary(void)
755 * System interrupts occur because some problem was detected on the 755 * System interrupts occur because some problem was detected on the
756 * various busses. To find out what you have to probe all the 756 * various busses. To find out what you have to probe all the
757 * hardware via the CAT bus. FIXME: At the moment we do nothing. */ 757 * hardware via the CAT bus. FIXME: At the moment we do nothing. */
758fastcall void smp_vic_sys_interrupt(struct pt_regs *regs) 758void smp_vic_sys_interrupt(struct pt_regs *regs)
759{ 759{
760 ack_CPI(VIC_SYS_INT); 760 ack_CPI(VIC_SYS_INT);
761 printk("Voyager SYSTEM INTERRUPT\n"); 761 printk("Voyager SYSTEM INTERRUPT\n");
@@ -764,7 +764,7 @@ fastcall void smp_vic_sys_interrupt(struct pt_regs *regs)
764/* Handle a voyager CMN_INT; These interrupts occur either because of 764/* Handle a voyager CMN_INT; These interrupts occur either because of
765 * a system status change or because a single bit memory error 765 * a system status change or because a single bit memory error
766 * occurred. FIXME: At the moment, ignore all this. */ 766 * occurred. FIXME: At the moment, ignore all this. */
767fastcall void smp_vic_cmn_interrupt(struct pt_regs *regs) 767void smp_vic_cmn_interrupt(struct pt_regs *regs)
768{ 768{
769 static __u8 in_cmn_int = 0; 769 static __u8 in_cmn_int = 0;
770 static DEFINE_SPINLOCK(cmn_int_lock); 770 static DEFINE_SPINLOCK(cmn_int_lock);
@@ -1086,7 +1086,7 @@ voyager_smp_call_function_mask(cpumask_t cpumask,
1086 * no local APIC, so I can't do this 1086 * no local APIC, so I can't do this
1087 * 1087 *
1088 * This function is currently a placeholder and is unused in the code */ 1088 * This function is currently a placeholder and is unused in the code */
1089fastcall void smp_apic_timer_interrupt(struct pt_regs *regs) 1089void smp_apic_timer_interrupt(struct pt_regs *regs)
1090{ 1090{
1091 struct pt_regs *old_regs = set_irq_regs(regs); 1091 struct pt_regs *old_regs = set_irq_regs(regs);
1092 wrapper_smp_local_timer_interrupt(); 1092 wrapper_smp_local_timer_interrupt();
@@ -1094,7 +1094,7 @@ fastcall void smp_apic_timer_interrupt(struct pt_regs *regs)
1094} 1094}
1095 1095
1096/* All of the QUAD interrupt GATES */ 1096/* All of the QUAD interrupt GATES */
1097fastcall void smp_qic_timer_interrupt(struct pt_regs *regs) 1097void smp_qic_timer_interrupt(struct pt_regs *regs)
1098{ 1098{
1099 struct pt_regs *old_regs = set_irq_regs(regs); 1099 struct pt_regs *old_regs = set_irq_regs(regs);
1100 ack_QIC_CPI(QIC_TIMER_CPI); 1100 ack_QIC_CPI(QIC_TIMER_CPI);
@@ -1102,31 +1102,31 @@ fastcall void smp_qic_timer_interrupt(struct pt_regs *regs)
1102 set_irq_regs(old_regs); 1102 set_irq_regs(old_regs);
1103} 1103}
1104 1104
1105fastcall void smp_qic_invalidate_interrupt(struct pt_regs *regs) 1105void smp_qic_invalidate_interrupt(struct pt_regs *regs)
1106{ 1106{
1107 ack_QIC_CPI(QIC_INVALIDATE_CPI); 1107 ack_QIC_CPI(QIC_INVALIDATE_CPI);
1108 smp_invalidate_interrupt(); 1108 smp_invalidate_interrupt();
1109} 1109}
1110 1110
1111fastcall void smp_qic_reschedule_interrupt(struct pt_regs *regs) 1111void smp_qic_reschedule_interrupt(struct pt_regs *regs)
1112{ 1112{
1113 ack_QIC_CPI(QIC_RESCHEDULE_CPI); 1113 ack_QIC_CPI(QIC_RESCHEDULE_CPI);
1114 smp_reschedule_interrupt(); 1114 smp_reschedule_interrupt();
1115} 1115}
1116 1116
1117fastcall void smp_qic_enable_irq_interrupt(struct pt_regs *regs) 1117void smp_qic_enable_irq_interrupt(struct pt_regs *regs)
1118{ 1118{
1119 ack_QIC_CPI(QIC_ENABLE_IRQ_CPI); 1119 ack_QIC_CPI(QIC_ENABLE_IRQ_CPI);
1120 smp_enable_irq_interrupt(); 1120 smp_enable_irq_interrupt();
1121} 1121}
1122 1122
1123fastcall void smp_qic_call_function_interrupt(struct pt_regs *regs) 1123void smp_qic_call_function_interrupt(struct pt_regs *regs)
1124{ 1124{
1125 ack_QIC_CPI(QIC_CALL_FUNCTION_CPI); 1125 ack_QIC_CPI(QIC_CALL_FUNCTION_CPI);
1126 smp_call_function_interrupt(); 1126 smp_call_function_interrupt();
1127} 1127}
1128 1128
1129fastcall void smp_vic_cpi_interrupt(struct pt_regs *regs) 1129void smp_vic_cpi_interrupt(struct pt_regs *regs)
1130{ 1130{
1131 struct pt_regs *old_regs = set_irq_regs(regs); 1131 struct pt_regs *old_regs = set_irq_regs(regs);
1132 __u8 cpu = smp_processor_id(); 1132 __u8 cpu = smp_processor_id();
@@ -1333,7 +1333,7 @@ int setup_profiling_timer(unsigned int multiplier)
1333/* This is a bit of a mess, but forced on us by the genirq changes 1333/* This is a bit of a mess, but forced on us by the genirq changes
1334 * there's no genirq handler that really does what voyager wants 1334 * there's no genirq handler that really does what voyager wants
1335 * so hack it up with the simple IRQ handler */ 1335 * so hack it up with the simple IRQ handler */
1336static void fastcall handle_vic_irq(unsigned int irq, struct irq_desc *desc) 1336static void handle_vic_irq(unsigned int irq, struct irq_desc *desc)
1337{ 1337{
1338 before_handle_vic_irq(irq); 1338 before_handle_vic_irq(irq);
1339 handle_simple_irq(irq, desc); 1339 handle_simple_irq(irq, desc);