aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_drv.h
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2018-09-18 16:20:18 +1000
committerDaniel Vetter <daniel.vetter@ffwll.ch>2018-09-18 11:17:06 +0200
commit57078338b2e4c07fb76bef23369cae0acfb1f7bc (patch)
tree4c8eb1e30d244ce15b4f01142b9bad38bc4e43d0 /include/drm/drm_drv.h
parentdrm/atomic: Use drm_drv_uses_atomic_modeset() for debugfs creation (diff)
downloadlinux-dev-57078338b2e4c07fb76bef23369cae0acfb1f7bc.tar.xz
linux-dev-57078338b2e4c07fb76bef23369cae0acfb1f7bc.zip
drm: fix drm_drv_uses_atomic_modeset on non modesetting drivers.
vgem seems to oops on the intel CI due to the vgem debugfs init hitting this path now. Check if we have mode_config funcs before checking one. Signed-off-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20180918062018.24942-1-airlied@gmail.com
Diffstat (limited to 'include/drm/drm_drv.h')
-rw-r--r--include/drm/drm_drv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h
index 46a8009784df..152b3055e9e1 100644
--- a/include/drm/drm_drv.h
+++ b/include/drm/drm_drv.h
@@ -675,7 +675,7 @@ static inline bool drm_core_check_feature(struct drm_device *dev, int feature)
static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev)
{
return drm_core_check_feature(dev, DRIVER_ATOMIC) ||
- dev->mode_config.funcs->atomic_commit != NULL;
+ (dev->mode_config.funcs && dev->mode_config.funcs->atomic_commit != NULL);
}