diff options
| author | Dave Airlie <airlied@redhat.com> | 2021-03-31 23:38:14 +0300 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2021-03-31 23:38:21 +0300 |
| commit | fb457e02f0ec09162734d7a0add1b0e39280c8d1 (patch) | |
| tree | de4d4e48657d4bdd9e123ebb1058f5747f1e9854 /include/linux | |
| parent | 2f835b5dd8f7fc1e58d73fc2cd2ec33c2b054036 (diff) | |
| parent | a4e5eed2c6a689ef2b6ad8d7ae86665c69039379 (diff) | |
| download | linux-fb457e02f0ec09162734d7a0add1b0e39280c8d1.tar.xz | |
Merge tag 'exynos-drm-next-for-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos into drm-next
One cleanup
- Based on the patch[1], clean up the use of request_irq function
series.
[1] https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next-history.git/commit/?id=cbe16f35bee6880becca6f20d2ebf6b457148552
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Inki Dae <inki.dae@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1617092998-23645-1-git-send-email-inki.dae@samsung.com
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/interrupt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 967e25767153..76f1161a441a 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -61,6 +61,9 @@ * interrupt handler after suspending interrupts. For system * wakeup devices users need to implement wakeup detection in * their interrupt handlers. + * IRQF_NO_AUTOEN - Don't enable IRQ or NMI automatically when users request it. + * Users will enable it explicitly by enable_irq() or enable_nmi() + * later. */ #define IRQF_SHARED 0x00000080 #define IRQF_PROBE_SHARED 0x00000100 @@ -74,6 +77,7 @@ #define IRQF_NO_THREAD 0x00010000 #define IRQF_EARLY_RESUME 0x00020000 #define IRQF_COND_SUSPEND 0x00040000 +#define IRQF_NO_AUTOEN 0x00080000 #define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND | IRQF_NO_THREAD) |
