aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/poodle.c
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2010-02-04 21:07:33 -0500
committerEric Miao <eric.y.miao@gmail.com>2010-03-01 18:40:50 -0500
commitac609d266e4af4ebf586d610bd76e04dddae0c4c (patch)
tree24465ed348c37c8abcfadd80676912b395f196eb /arch/arm/mach-pxa/poodle.c
parent00dd8027b913088ff9b656c5aaa6336c303b7f26 (diff)
[ARM] locomo: allow cascaded IRQ base to be specified by platforms
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/poodle.c')
-rw-r--r--arch/arm/mach-pxa/poodle.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c
index 1b9d7450ae2..d58a52415d7 100644
--- a/arch/arm/mach-pxa/poodle.c
+++ b/arch/arm/mach-pxa/poodle.c
@@ -174,11 +174,18 @@ static struct resource locomo_resources[] = {
174 }, 174 },
175}; 175};
176 176
177static struct locomo_platform_data locomo_info = {
178 .irq_base = IRQ_BOARD_START,
179};
180
177struct platform_device poodle_locomo_device = { 181struct platform_device poodle_locomo_device = {
178 .name = "locomo", 182 .name = "locomo",
179 .id = 0, 183 .id = 0,
180 .num_resources = ARRAY_SIZE(locomo_resources), 184 .num_resources = ARRAY_SIZE(locomo_resources),
181 .resource = locomo_resources, 185 .resource = locomo_resources,
186 .dev = {
187 .platform_data = &locomo_info,
188 },
182}; 189};
183 190
184EXPORT_SYMBOL(poodle_locomo_device); 191EXPORT_SYMBOL(poodle_locomo_device);