]> git.baikalelectronics.ru Git - kernel.git/commit
drm/exynos: move to use request_irq by IRQF_NO_AUTOEN flag
authorTian Tao <tiantao6@hisilicon.com>
Mon, 15 Mar 2021 11:49:37 +0000 (19:49 +0800)
committerInki Dae <inki.dae@samsung.com>
Mon, 29 Mar 2021 11:37:17 +0000 (20:37 +0900)
commit91cae4cae9d481cbf540e1b486980dbba6e458ce
treefcee7ceb9465c7b73e608f809c8ad648d4484fba
parent5d07513c7d369297c695d2bde926ee2d9c5bbb49
drm/exynos: move to use request_irq by IRQF_NO_AUTOEN flag

After this patch ded5c872c9536 genirq: Add IRQF_NO_AUTOEN for
request_irq/nmi() is merged. request_irq() after setting
IRQ_NOAUTOEN as below

irq_set_status_flags(irq, IRQ_NOAUTOEN);
request_irq(dev, irq...);
can be replaced by request_irq() with IRQF_NO_AUTOEN flag.

v2:
Fix the problem of using wrong flags

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos5433_drm_decon.c
drivers/gpu/drm/exynos/exynos_drm_dsi.c