mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 00:21:32 +00:00
39ae702cd3
Add the platform data to enable AB8500 interrupt support. Acked-by: Linus Walleij <linus.walleij@stericsson.com> Acked-by: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
24 lines
551 B
C
24 lines
551 B
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* Author: Rabin Vincent <rabin.vincent@stericsson.com>
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#ifndef __MACH_IRQS_BOARD_MOP500_H
|
|
#define __MACH_IRQS_BOARD_MOP500_H
|
|
|
|
#define AB8500_NR_IRQS 104
|
|
|
|
#define MOP500_AB8500_IRQ_BASE IRQ_BOARD_START
|
|
#define MOP500_AB8500_IRQ_END (MOP500_AB8500_IRQ_BASE \
|
|
+ AB8500_NR_IRQS)
|
|
#define MOP500_IRQ_END MOP500_AB8500_IRQ_END
|
|
|
|
#if MOP500_IRQ_END > IRQ_BOARD_END
|
|
#undef IRQ_BOARD_END
|
|
#define IRQ_BOARD_END MOP500_IRQ_END
|
|
#endif
|
|
|
|
#endif
|