aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>2013-03-07 18:31:03 -0500
committerSimon Horman <horms+renesas@verge.net.au>2013-03-12 13:13:22 -0400
commitd60cd5f16b5af62672209eddd64f70be3f68d17b (patch)
tree841bac68358ebac436e0f31a4ae9d2d18fba82f8
parenta7b9837c7749bf3333151a7d060d239caff1569d (diff)
ARM: shmobile: R8A7779: use gic_iid() in SATA IRQ resource
Commit "ARM: shmobile: r8a7779: use gic_iid macro" switched R8A7779 platform devices to using gic_iid() macro instead of gic_spi() but commit "ARM: mach- shmobile: r8a7779: add SATA support" added another use of gic_spi(). Convert the SATA IRQ resource to using gic_iid(). Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/mach-shmobile/setup-r8a7779.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c
index 10031fef074a..042df35e71a0 100644
--- a/arch/arm/mach-shmobile/setup-r8a7779.c
+++ b/arch/arm/mach-shmobile/setup-r8a7779.c
@@ -331,7 +331,7 @@ static struct resource sata_resources[] = {
331 .flags = IORESOURCE_MEM, 331 .flags = IORESOURCE_MEM,
332 }, 332 },
333 [1] = { 333 [1] = {
334 .start = gic_spi(100), 334 .start = gic_iid(0x84),
335 .flags = IORESOURCE_IRQ, 335 .flags = IORESOURCE_IRQ,
336 }, 336 },
337}; 337};