From 011b2e84582ba873f63f2c42829f1677782b5cfe Mon Sep 17 00:00:00 2001 From: Ryan Mallon Date: Thu, 12 Apr 2012 09:11:55 +1000 Subject: [PATCH] Fix build breakage in ep93xx-core Commit ede55aaa8bb2dd37e302b2f94312306d216e5f97 "arm: ep93xx: use DEFINE_RES_* macros" introduced a build breakage in ep93xx due to a typo. Fix it. Signed-off-by: Ryan Mallon Acked-by: Hartley Sweeten --- arch/arm/mach-ep93xx/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index a2cb176cee33..e4a64d2f8955 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c @@ -357,7 +357,7 @@ static struct ep93xx_eth_data ep93xx_eth_data; static struct resource ep93xx_eth_resource[] = { DEFINE_RES_MEM(EP93XX_ETHERNET_PHYS_BASE, 0x10000), - DEFINE_REQ_IRQ(IRQ_EP93XX_ETHERNET), + DEFINE_RES_IRQ(IRQ_EP93XX_ETHERNET), }; static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32);