Skip to content

Commit

Permalink
ARM: amba: samsung: get rid of NO_IRQ initializers
Browse files Browse the repository at this point in the history
Acked-by: Kukjin Kim <[email protected]>
Signed-off-by: Russell King <[email protected]>
  • Loading branch information
Russell King committed Jan 25, 2012
1 parent 0250eb5 commit 8a47ae8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-exynos/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ struct amba_device exynos4_device_pdma0 = {
.end = EXYNOS4_PA_PDMA0 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA0, NO_IRQ},
.irq = {IRQ_PDMA0},
.periphid = 0x00041330,
};

Expand Down Expand Up @@ -135,7 +135,7 @@ struct amba_device exynos4_device_pdma1 = {
.end = EXYNOS4_PA_PDMA1 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA1, NO_IRQ},
.irq = {IRQ_PDMA1},
.periphid = 0x00041330,
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-s5p64x0/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ struct amba_device s5p64x0_device_pdma = {
.end = S5P64X0_PA_PDMA + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_DMA0, NO_IRQ},
.irq = {IRQ_DMA0},
.periphid = 0x00041330,
};

Expand Down
4 changes: 2 additions & 2 deletions arch/arm/mach-s5pc100/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ struct amba_device s5pc100_device_pdma0 = {
.end = S5PC100_PA_PDMA0 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA0, NO_IRQ},
.irq = {IRQ_PDMA0},
.periphid = 0x00041330,
};

Expand Down Expand Up @@ -139,7 +139,7 @@ struct amba_device s5pc100_device_pdma1 = {
.end = S5PC100_PA_PDMA1 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA1, NO_IRQ},
.irq = {IRQ_PDMA1},
.periphid = 0x00041330,
};

Expand Down
4 changes: 2 additions & 2 deletions arch/arm/mach-s5pv210/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct amba_device s5pv210_device_pdma0 = {
.end = S5PV210_PA_PDMA0 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA0, NO_IRQ},
.irq = {IRQ_PDMA0},
.periphid = 0x00041330,
};

Expand Down Expand Up @@ -139,7 +139,7 @@ struct amba_device s5pv210_device_pdma1 = {
.end = S5PV210_PA_PDMA1 + SZ_4K,
.flags = IORESOURCE_MEM,
},
.irq = {IRQ_PDMA1, NO_IRQ},
.irq = {IRQ_PDMA1},
.periphid = 0x00041330,
};

Expand Down

0 comments on commit 8a47ae8

Please sign in to comment.