aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/drm.c
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2015-09-24 18:38:09 +0200
committerThierry Reding <treding@nvidia.com>2015-12-14 15:47:36 +0100
commitad906599c1919eda6f365ecec8d50198c9232131 (patch)
tree2ff1ad2ac50ba756eb97b727509b0f2a31af8dd3 /drivers/gpu/drm/tegra/drm.c
parentdrm/tegra: Use DRIVER level for IOMMU aperture message (diff)
downloadlinux-dev-ad906599c1919eda6f365ecec8d50198c9232131.tar.xz
linux-dev-ad906599c1919eda6f365ecec8d50198c9232131.zip
drm/tegra: Advertise DRIVER_ATOMIC
The driver has supported atomic mode-setting for quite a while. It's time to advertise that. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.c')
-rw-r--r--drivers/gpu/drm/tegra/drm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index d9a09251e9f1..50d7160c667b 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -919,7 +919,8 @@ static void tegra_debugfs_cleanup(struct drm_minor *minor)
#endif
static struct drm_driver tegra_drm_driver = {
- .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
+ .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
+ DRIVER_ATOMIC,
.load = tegra_drm_load,
.unload = tegra_drm_unload,
.open = tegra_drm_open,