diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-08-18 14:01:51 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-04-22 14:16:49 -0400 |
commit | 44883eb0231f4a5ce56926fdee185cba867ac121 (patch) | |
tree | 6d8ef736761f5bc87d174e60f7faac8193e16a24 /arch/m68k/include | |
parent | e2b56288af0c0b97c63aaaa667f2f3165971e911 (diff) |
m68k/atari: Change VME irq numbers from unsigned long to unsigned int
Device interrupts numbers were changed to unsigned int in 1997, the year
IRQ_MACHSPEC was killed as well.
Also kill a related cast while we're at it.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: netdev@vger.kernel.org
Diffstat (limited to 'arch/m68k/include')
-rw-r--r-- | arch/m68k/include/asm/atariints.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/include/asm/atariints.h b/arch/m68k/include/asm/atariints.h index 656bbbf5a6ff..5fc13bdf9044 100644 --- a/arch/m68k/include/asm/atariints.h +++ b/arch/m68k/include/asm/atariints.h | |||
@@ -198,7 +198,7 @@ static inline int atari_irq_pending( unsigned irq ) | |||
198 | return( get_mfp_bit( irq, MFP_PENDING ) ); | 198 | return( get_mfp_bit( irq, MFP_PENDING ) ); |
199 | } | 199 | } |
200 | 200 | ||
201 | unsigned long atari_register_vme_int( void ); | 201 | unsigned int atari_register_vme_int(void); |
202 | void atari_unregister_vme_int( unsigned long ); | 202 | void atari_unregister_vme_int(unsigned int); |
203 | 203 | ||
204 | #endif /* linux/atariints.h */ | 204 | #endif /* linux/atariints.h */ |