diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-09-07 09:07:13 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-10-07 18:32:46 +0200 |
commit | 1091a654ac1722b6ab4fc6533925c1a02486fff4 (patch) | |
tree | 867d134b9ca93a12898816f62b1dadf1511e7445 /arch/arm/mach-davinci/board-da830-evm.c | |
parent | Merge tag 'samsung-clk-s3c64xx' of http://git.kernel.org/pub/scm/linux/kernel... (diff) | |
download | linux-1091a654ac1722b6ab4fc6533925c1a02486fff4.tar.xz linux-1091a654ac1722b6ab4fc6533925c1a02486fff4.zip |
ARM: davinci: remove deprecated IRQF_DISABLED
This patch proposes to remove the IRQF_DISABLED flag from Davinci code ;)
It's a NOOP since 2.6.35, and will be removed one day
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-davinci/board-da830-evm.c')
-rw-r--r-- | arch/arm/mach-davinci/board-da830-evm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/board-da830-evm.c b/arch/arm/mach-davinci/board-da830-evm.c index c4bdc0a1c36e..30a44e2df47e 100644 --- a/arch/arm/mach-davinci/board-da830-evm.c +++ b/arch/arm/mach-davinci/board-da830-evm.c @@ -74,7 +74,7 @@ static int da830_evm_usb_ocic_notify(da8xx_ocic_handler_t handler) if (handler != NULL) { da830_evm_usb_ocic_handler = handler; - error = request_irq(irq, da830_evm_usb_ocic_irq, IRQF_DISABLED | + error = request_irq(irq, da830_evm_usb_ocic_irq, IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, "OHCI over-current indicator", NULL); if (error) |