diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2014-08-23 14:45:47 +0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-08-23 21:05:08 +0400 |
commit | 53f3cc46336b9e514c98556b4a009a69ed808d3b (patch) | |
tree | aaa6199a54836ae9d7f8c1021134b45feb6f1fdb /arch/blackfin/mach-bf561 | |
parent | ca99140a63b7326ee9a38f64c326317f2c63b594 (diff) | |
download | linux-53f3cc46336b9e514c98556b4a009a69ed808d3b.tar.xz |
pata_platform: Remove useless irq_flags field
IRQ flags can be obtained from resource structure, there are no need
to use additional field in the platform_data to store these values.
This patch removes this field and convert existing users of this driver
to use IRQ flags from the resources.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf561')
-rw-r--r-- | arch/blackfin/mach-bf561/boards/cm_bf561.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/blackfin/mach-bf561/boards/cm_bf561.c b/arch/blackfin/mach-bf561/boards/cm_bf561.c index e862f7823e68..c6db52ba3a06 100644 --- a/arch/blackfin/mach-bf561/boards/cm_bf561.c +++ b/arch/blackfin/mach-bf561/boards/cm_bf561.c @@ -354,7 +354,6 @@ static struct platform_device bfin_sir0_device = { static struct pata_platform_info bfin_pata_platform_data = { .ioport_shift = 2, - .irq_type = IRQF_TRIGGER_HIGH, }; static struct resource bfin_pata_resources[] = { @@ -371,7 +370,7 @@ static struct resource bfin_pata_resources[] = { { .start = PATA_INT, .end = PATA_INT, - .flags = IORESOURCE_IRQ, + .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, }, }; |