]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge branch 'next/soc' into for-next
authorOlof Johansson <olof@lixom.net>
Mon, 7 Oct 2013 16:32:54 +0000 (09:32 -0700)
committerOlof Johansson <olof@lixom.net>
Mon, 7 Oct 2013 16:33:14 +0000 (09:33 -0700)
* next/soc:
  ARM: davinci: remove deprecated IRQF_DISABLED

Signed-off-by: Olof Johansson <olof@lixom.net>
arch/arm/arm-soc-for-next-contents.txt
arch/arm/mach-davinci/board-da830-evm.c
arch/arm/mach-davinci/board-omapl138-hawk.c
arch/arm/mach-davinci/time.c

index 574ddb7c4fa005fbfa27b0db0ca80cac6d973ca0..ee82c210c51b12d0e5bc52f044fa09f8439e7476 100644 (file)
@@ -7,6 +7,8 @@ next/cleanup
 next/soc
        samsung/s3c64xx-clk
                http://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git tags/samsung-clk-s3c64xx
+       patch
+               ARM: davinci: remove deprecated IRQF_DISABLED
 
 next/drivers
        davinci/gpio
index 67df6f6bee496e0ec9f1708bdaa361eaa949aa38..40f15f133c55c3646d5eeac3ef3eec7764cae760 100644 (file)
@@ -76,7 +76,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)
index d0d9da0b0a943202fe12e5357ed1d5e27edd410f..2aac51d0e85325361d9406e2d5abd6b8f8b9383b 100644 (file)
@@ -213,7 +213,7 @@ static int hawk_usb_ocic_notify(da8xx_ocic_handler_t handler)
                hawk_usb_ocic_handler = handler;
 
                error = request_irq(irq, omapl138_hawk_usb_ocic_irq,
-                                       IRQF_DISABLED | IRQF_TRIGGER_RISING |
+                                       IRQF_TRIGGER_RISING |
                                        IRQF_TRIGGER_FALLING,
                                        "OHCI over-current indicator", NULL);
                if (error)
index 7a55b5c9597124a23345066771b9bb88a5893478..e7ada0ca72ee7e3e79536177cc28921b9cd80b2a 100644 (file)
@@ -181,7 +181,7 @@ static struct timer_s timers[] = {
                .name      = "clockevent",
                .opts      = TIMER_OPTS_DISABLED,
                .irqaction = {
-                       .flags   = IRQF_DISABLED | IRQF_TIMER,
+                       .flags   = IRQF_TIMER,
                        .handler = timer_interrupt,
                }
        },
@@ -190,7 +190,7 @@ static struct timer_s timers[] = {
                .period     = ~0,
                .opts       = TIMER_OPTS_PERIODIC,
                .irqaction = {
-                       .flags   = IRQF_DISABLED | IRQF_TIMER,
+                       .flags   = IRQF_TIMER,
                        .handler = freerun_interrupt,
                }
        },