aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonyoung Shim <jy0922.shim@samsung.com>2014-04-11 20:39:52 -0400
committerInki Dae <daeinki@gmail.com>2014-06-01 13:07:02 -0400
commitbe9b64a81acbc6ec809feeb6af4944c42608057c (patch)
tree0d22b4f67f254209697a201fce92ebad09249931
parentb90f54188f2d630d826960e33e1ea8e27e43a33f (diff)
drm/exynos: remove DRIVER_HAVE_IRQ feature
Exynos drm driver cannot support DRIVER_HAVE_IRQ feature because it uses driver specific one instead of routine of drm framework to install/uninstall irq handler. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_drv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c
index 2d27ba23a6a8..027e32d25793 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
@@ -323,8 +323,7 @@ static const struct file_operations exynos_drm_driver_fops = {
323}; 323};
324 324
325static struct drm_driver exynos_drm_driver = { 325static struct drm_driver exynos_drm_driver = {
326 .driver_features = DRIVER_HAVE_IRQ | DRIVER_MODESET | 326 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
327 DRIVER_GEM | DRIVER_PRIME,
328 .load = exynos_drm_load, 327 .load = exynos_drm_load,
329 .unload = exynos_drm_unload, 328 .unload = exynos_drm_unload,
330 .suspend = exynos_drm_suspend, 329 .suspend = exynos_drm_suspend,