diff options
| author | Olaf Hering <olaf@aepfle.de> | 2006-10-06 17:06:48 -0400 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-10-07 08:11:20 -0400 |
| commit | 40a5f7ca07f8e1d77acdba5ae0c11c15cb7520c1 (patch) | |
| tree | d568687f532826dd5dca6639529aa9e58e612228 /arch/ppc/syslib | |
| parent | f5a924581a4e7b9bc29a49ee1397dcaaacd5f25f (diff) | |
[POWERPC] PReP fixup after irq changes
Compile fixes for PReP in ARCH=ppc.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/syslib')
| -rw-r--r-- | arch/ppc/syslib/open_pic.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/ppc/syslib/open_pic.c b/arch/ppc/syslib/open_pic.c index aa0b95788705..18ec94733293 100644 --- a/arch/ppc/syslib/open_pic.c +++ b/arch/ppc/syslib/open_pic.c | |||
| @@ -45,7 +45,7 @@ static u_int NumSources; | |||
| 45 | static int open_pic_irq_offset; | 45 | static int open_pic_irq_offset; |
| 46 | static volatile OpenPIC_Source __iomem *ISR[NR_IRQS]; | 46 | static volatile OpenPIC_Source __iomem *ISR[NR_IRQS]; |
| 47 | static int openpic_cascade_irq = -1; | 47 | static int openpic_cascade_irq = -1; |
| 48 | static int (*openpic_cascade_fn)(struct pt_regs *); | 48 | static int (*openpic_cascade_fn)(void); |
| 49 | 49 | ||
| 50 | /* Global Operations */ | 50 | /* Global Operations */ |
| 51 | static void openpic_disable_8259_pass_through(void); | 51 | static void openpic_disable_8259_pass_through(void); |
| @@ -54,7 +54,7 @@ static void openpic_set_spurious(u_int vector); | |||
| 54 | #ifdef CONFIG_SMP | 54 | #ifdef CONFIG_SMP |
| 55 | /* Interprocessor Interrupts */ | 55 | /* Interprocessor Interrupts */ |
| 56 | static void openpic_initipi(u_int ipi, u_int pri, u_int vector); | 56 | static void openpic_initipi(u_int ipi, u_int pri, u_int vector); |
| 57 | static irqreturn_t openpic_ipi_action(int cpl, void *dev_id, struct pt_regs *); | 57 | static irqreturn_t openpic_ipi_action(int cpl, void *dev_id); |
| 58 | #endif | 58 | #endif |
| 59 | 59 | ||
| 60 | /* Timer Interrupts */ | 60 | /* Timer Interrupts */ |
| @@ -700,7 +700,7 @@ static struct irqaction openpic_cascade_irqaction = { | |||
| 700 | 700 | ||
| 701 | void __init | 701 | void __init |
| 702 | openpic_hookup_cascade(u_int irq, char *name, | 702 | openpic_hookup_cascade(u_int irq, char *name, |
| 703 | int (*cascade_fn)(struct pt_regs *)) | 703 | int (*cascade_fn)(void)) |
| 704 | { | 704 | { |
| 705 | openpic_cascade_irq = irq; | 705 | openpic_cascade_irq = irq; |
| 706 | openpic_cascade_fn = cascade_fn; | 706 | openpic_cascade_fn = cascade_fn; |
| @@ -857,16 +857,16 @@ static void openpic_end_ipi(unsigned int irq_nr) | |||
| 857 | { | 857 | { |
| 858 | } | 858 | } |
| 859 | 859 | ||
| 860 | static irqreturn_t openpic_ipi_action(int cpl, void *dev_id, struct pt_regs *regs) | 860 | static irqreturn_t openpic_ipi_action(int cpl, void *dev_id) |
| 861 | { | 861 | { |
| 862 | smp_message_recv(cpl-OPENPIC_VEC_IPI-open_pic_irq_offset, regs); | 862 | smp_message_recv(cpl-OPENPIC_VEC_IPI-open_pic_irq_offset); |
| 863 | return IRQ_HANDLED; | 863 | return IRQ_HANDLED; |
| 864 | } | 864 | } |
| 865 | 865 | ||
| 866 | #endif /* CONFIG_SMP */ | 866 | #endif /* CONFIG_SMP */ |
| 867 | 867 | ||
| 868 | int | 868 | int |
| 869 | openpic_get_irq(struct pt_regs *regs) | 869 | openpic_get_irq(void) |
| 870 | { | 870 | { |
| 871 | int irq = openpic_irq(); | 871 | int irq = openpic_irq(); |
| 872 | 872 | ||
| @@ -876,7 +876,7 @@ openpic_get_irq(struct pt_regs *regs) | |||
| 876 | * This should move to irq.c eventually. -- paulus | 876 | * This should move to irq.c eventually. -- paulus |
| 877 | */ | 877 | */ |
| 878 | if (irq == openpic_cascade_irq && openpic_cascade_fn != NULL) { | 878 | if (irq == openpic_cascade_irq && openpic_cascade_fn != NULL) { |
| 879 | int cirq = openpic_cascade_fn(regs); | 879 | int cirq = openpic_cascade_fn(); |
| 880 | 880 | ||
| 881 | /* Allow for the cascade being shared with other devices */ | 881 | /* Allow for the cascade being shared with other devices */ |
| 882 | if (cirq != -1) { | 882 | if (cirq != -1) { |
