Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b6794ef authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Simon Horman
Browse files

ARM: shmobile: marzen: Use gic_iid macro for ICCIAR / interrupt ID



ARM: shmobile: add gic_iid macro for ICCIAR / interrupt ID
enabled to use gic_iid macro.
This patch exchange current GIC interrupt setting
from gic_spi() to gic_iid()

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
[ horms+renesas@verge.net.au: Split irq.h portion into a separate patch ]
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent 5377762e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ static struct resource smsc911x_resources[] = {
		.flags		= IORESOURCE_MEM,
	},
	[1] = {
		.start		= gic_spi(28), /* IRQ 1 */
		.start		= gic_iid(0x3c), /* IRQ 1 */
		.flags		= IORESOURCE_IRQ,
	},
};
@@ -97,7 +97,7 @@ static struct resource sdhi0_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= gic_spi(104),
		.start	= gic_iid(0x88),
		.flags	= IORESOURCE_IRQ,
	},
};
@@ -215,7 +215,7 @@ static struct resource ehci0_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= gic_spi(44),
		.start	= gic_iid(0x4c),
		.flags	= IORESOURCE_IRQ,
	},
};
@@ -239,7 +239,7 @@ static struct resource ehci1_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= gic_spi(45),
		.start	= gic_iid(0x4d),
		.flags	= IORESOURCE_IRQ,
	},
};
@@ -269,7 +269,7 @@ static struct resource ohci0_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= gic_spi(44),
		.start	= gic_iid(0x4c),
		.flags	= IORESOURCE_IRQ,
	},
};
@@ -293,7 +293,7 @@ static struct resource ohci1_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= gic_spi(45),
		.start	= gic_iid(0x4d),
		.flags	= IORESOURCE_IRQ,
	},
};