Commit b0957235 authored by Mike Rapoport's avatar Mike Rapoport Committed by Russell King

[ARM] 5065/2: CM-X270: Fix DM9000 IRQ flags initialisation

Add the IORESOURCE_IRQ_HIGHEDGE to the DM9000 IRQ resource
to stop the driver itself complaining it was not given
any flags to use.
Signed-off-by: default avatarMike Rapoport <mike@compulab.co.il>
Acked-by: default avatarEric Miao <eric.miao@marvell.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 6d254573
...@@ -59,7 +59,7 @@ static struct resource cmx270_dm9k_resource[] = { ...@@ -59,7 +59,7 @@ static struct resource cmx270_dm9k_resource[] = {
[2] = { [2] = {
.start = CMX270_ETHIRQ, .start = CMX270_ETHIRQ,
.end = CMX270_ETHIRQ, .end = CMX270_ETHIRQ,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment