diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-02-14 11:18:59 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-18 22:31:33 +0100 |
commit | f8aeb85f158fa98f8c2c9a24effb00adc06c0e85 (patch) | |
tree | fd789acb831c6e8df8707947dcceee4b0b43d86c /arch/mips/sgi-ip27 | |
parent | [MIPS] Fix sigset_t endianess swapping issues in 32-bit compat code. (diff) | |
download | linux-f8aeb85f158fa98f8c2c9a24effb00adc06c0e85.tar.xz linux-f8aeb85f158fa98f8c2c9a24effb00adc06c0e85.zip |
[MIPS] IP27: Fix warning.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip27')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip27/ip27-timer.c b/arch/mips/sgi-ip27/ip27-timer.c index 9ce513629b14..8c3c78c63ccd 100644 --- a/arch/mips/sgi-ip27/ip27-timer.c +++ b/arch/mips/sgi-ip27/ip27-timer.c @@ -190,7 +190,7 @@ static struct irq_chip rt_irq_type = { }; static struct irqaction rt_irqaction = { - .handler = ip27_rt_timer_interrupt, + .handler = (irq_handler_t) ip27_rt_timer_interrupt, .flags = IRQF_DISABLED, .mask = CPU_MASK_NONE, .name = "timer" |