Commit 9cf345e3 authored by Ben Dooks's avatar Ben Dooks

[ARM] S3C2410: Fix flags on DM9000 resources on BAST and VR1000

Fix the flags entries for the DM9000 IRQ entries on both the
Simtec BAST and Thorcom VR1000 board. The current entries use
the IRQF_ flags, but we should be using the IORESOURCE_IRQ_
definitions.
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
PATCH FOLLOWS
KernelVersion: 2.6.26-rc5
parent 8fe059df
...@@ -374,7 +374,7 @@ static struct resource bast_dm9k_resource[] = { ...@@ -374,7 +374,7 @@ static struct resource bast_dm9k_resource[] = {
[2] = { [2] = {
.start = IRQ_DM9000, .start = IRQ_DM9000,
.end = IRQ_DM9000, .end = IRQ_DM9000,
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH, .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
} }
}; };
......
...@@ -263,7 +263,7 @@ static struct resource vr1000_dm9k0_resource[] = { ...@@ -263,7 +263,7 @@ static struct resource vr1000_dm9k0_resource[] = {
[2] = { [2] = {
.start = IRQ_VR1000_DM9000A, .start = IRQ_VR1000_DM9000A,
.end = IRQ_VR1000_DM9000A, .end = IRQ_VR1000_DM9000A,
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH, .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
} }
}; };
...@@ -282,7 +282,7 @@ static struct resource vr1000_dm9k1_resource[] = { ...@@ -282,7 +282,7 @@ static struct resource vr1000_dm9k1_resource[] = {
[2] = { [2] = {
.start = IRQ_VR1000_DM9000N, .start = IRQ_VR1000_DM9000N,
.end = IRQ_VR1000_DM9000N, .end = IRQ_VR1000_DM9000N,
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH, .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
} }
}; };
......
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