diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 11:24:22 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 16:51:18 +0100 |
commit | 9cf345e3991623d4b7e4df2624b898d7f20ec37f (patch) | |
tree | 31d7361707b0ef2d9647fcfa3c47bfea12a7178f /arch/arm/mach-s3c2410/mach-bast.c | |
parent | 8fe059df33f82fb785dd795391498ad8bc6fac09 (diff) | |
download | talos-op-linux-9cf345e3991623d4b7e4df2624b898d7f20ec37f.tar.gz talos-op-linux-9cf345e3991623d4b7e4df2624b898d7f20ec37f.zip |
[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: Ben Dooks <ben-linux@fluff.org>
PATCH FOLLOWS
KernelVersion: 2.6.26-rc5
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-bast.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-bast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index 27f63d5d3a7b..ae5b354c61c2 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c @@ -374,7 +374,7 @@ static struct resource bast_dm9k_resource[] = { [2] = { .start = IRQ_DM9000, .end = IRQ_DM9000, - .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH, + .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, } }; |