diff options
author | Darius Augulis <augulis.darius@gmail.com> | 2010-09-09 21:41:31 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-09-18 09:54:55 +0900 |
commit | 4d89ecaae9c145e60b920acb1120f1de3d6eac6e (patch) | |
tree | 5eb606a3bf389e40d40c6e79ed6a14f60d1705cf /arch | |
parent | 591cd25ee35986184870c447ff5c12e78bc80699 (diff) | |
download | linux-4d89ecaae9c145e60b920acb1120f1de3d6eac6e.tar.bz2 |
ARM: S3C64XX: Add IORESOURCE_IRQ_HIGHLEVEL flag to dm9000 on mach-real6410
Add IORESOURCE_IRQ_HIGHLEVEL irq flag to dm9000 driver
platform data in board mach-real6410.
Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
[kgene.kim@samsung.com: minor title fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-s3c64xx/mach-real6410.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-real6410.c b/arch/arm/mach-s3c64xx/mach-real6410.c index 9f79e6bacb59..e130379ba0e8 100644 --- a/arch/arm/mach-s3c64xx/mach-real6410.c +++ b/arch/arm/mach-s3c64xx/mach-real6410.c @@ -81,7 +81,7 @@ static struct resource real6410_dm9k_resource[] = { [2] = { .start = S3C_EINT(7), .end = S3C_EINT(7), - .flags = IORESOURCE_IRQ, + .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL } }; |