Skip to content

Commit

Permalink
[POWERPC] SPU fixup after irq changes
Browse files Browse the repository at this point in the history
Remove struct pt_regs * from remaining spu irq functions.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Olaf Hering authored and Paul Mackerras committed Oct 7, 2006
1 parent 35a84c2 commit f5a9245
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/powerpc/platforms/cell/spu_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
}

static irqreturn_t
spu_irq_class_0(int irq, void *data, struct pt_regs *regs)
spu_irq_class_0(int irq, void *data)
{
struct spu *spu;

Expand Down Expand Up @@ -186,7 +186,7 @@ spu_irq_class_0_bottom(struct spu *spu)
EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);

static irqreturn_t
spu_irq_class_1(int irq, void *data, struct pt_regs *regs)
spu_irq_class_1(int irq, void *data)
{
struct spu *spu;
unsigned long stat, mask, dar, dsisr;
Expand Down Expand Up @@ -224,7 +224,7 @@ spu_irq_class_1(int irq, void *data, struct pt_regs *regs)
EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);

static irqreturn_t
spu_irq_class_2(int irq, void *data, struct pt_regs *regs)
spu_irq_class_2(int irq, void *data)
{
struct spu *spu;
unsigned long stat;
Expand Down

0 comments on commit f5a9245

Please sign in to comment.