OSDN Git Service

drm: exynos: include linux/irq.h
authorArnd Bergmann <arnd@arndb.de>
Tue, 5 Sep 2017 08:19:55 +0000 (10:19 +0200)
committerInki Dae <inki.dae@samsung.com>
Tue, 19 Sep 2017 10:50:47 +0000 (19:50 +0900)
commit9ac30ef6d8ec3533d0feec53e268c4fa32ea700c
tree957cd2d2f9e8f4fc1cf0917cf634211292278919
parent6e8edf8a7d8d98e1734ff41e5c69439419319402
drm: exynos: include linux/irq.h

I ran into a build error on x86:

drivers/gpu/drm/exynos/exynos5433_drm_decon.c: In function 'decon_conf_irq':
drivers/gpu/drm/exynos/exynos5433_drm_decon.c:706:2: error: implicit declaration of function 'irq_set_status_flags'; did you mean 'dquot_state_flag'? [-Werror=implicit-function-declaration]
  irq_set_status_flags(irq, IRQ_NOAUTOEN);

Adding the missing include fixes the error.

Fixes: b37d53a0382c ("drm/exynos/decon5433: move TE handling to DECON")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos5433_drm_decon.c