diff options
author | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2015-08-24 07:52:19 -0400 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2015-08-30 11:27:38 -0400 |
commit | c8c38ccff9308a706b5314ca1cf157713a40f6b5 (patch) | |
tree | ca5a8d9d5f7f86db943626dd70c747969ed88e4c | |
parent | 7cf23eaf0d8e6f34f3bc89141efc96b2502b290c (diff) |
drm/exynos: Enable atomic modesetting feature
From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Now that atomic modesetting is implemented for exynos enable the
DRIVER_ATOMIC flag on the driver's features.
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index 1350c8e2d587..d53e44914601 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c | |||
@@ -438,7 +438,8 @@ static const struct file_operations exynos_drm_driver_fops = { | |||
438 | }; | 438 | }; |
439 | 439 | ||
440 | static struct drm_driver exynos_drm_driver = { | 440 | static struct drm_driver exynos_drm_driver = { |
441 | .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME, | 441 | .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
442 | | DRIVER_ATOMIC, | ||
442 | .load = exynos_drm_load, | 443 | .load = exynos_drm_load, |
443 | .unload = exynos_drm_unload, | 444 | .unload = exynos_drm_unload, |
444 | .suspend = exynos_drm_suspend, | 445 | .suspend = exynos_drm_suspend, |