From: Peter Ujfalusi Date: Thu, 12 Mar 2015 08:06:26 +0000 (+0200) Subject: ARM: davinci: devices-da8xx: Add interrupt resource to McASP structs X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=80f7d0e03e759d19925608a9d4d395187b1f2006;p=linux-beck.git ARM: davinci: devices-da8xx: Add interrupt resource to McASP structs On da8xx McASP TX/RX interrupt requests are combined. The interrupt can be used for error recovery. Signed-off-by: Peter Ujfalusi Signed-off-by: Sekhar Nori --- diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c index f35174317770..e15e046c5438 100644 --- a/arch/arm/mach-davinci/devices-da8xx.c +++ b/arch/arm/mach-davinci/devices-da8xx.c @@ -475,6 +475,11 @@ static struct resource da830_mcasp1_resources[] = { .end = DAVINCI_DA830_DMA_MCASP1_AREVT, .flags = IORESOURCE_DMA, }, + { + .name = "common", + .start = IRQ_DA8XX_MCASPINT, + .flags = IORESOURCE_IRQ, + }, }; static struct platform_device da830_mcasp1_device = { @@ -505,6 +510,11 @@ static struct resource da850_mcasp_resources[] = { .end = DAVINCI_DA8XX_DMA_MCASP0_AREVT, .flags = IORESOURCE_DMA, }, + { + .name = "common", + .start = IRQ_DA8XX_MCASPINT, + .flags = IORESOURCE_IRQ, + }, }; static struct platform_device da850_mcasp_device = {